< Previous by Date Date Index Next by Date >
  Thread Index Next in Thread >

[reSIProcate-users] Mixed Content misses CRLF


Hi,

 

 

 std::ostream&

MultipartMixedContents::encodeParsed(std::ostream& str) const

{

…………………………………………………………………………………….

str << Symbols::CRLF << boundary << Symbols::DASHDASH;

return str;

}

 

 I think the end of boundary should need CRFL as

 

 str << Symbols::CRLF << boundary << Symbols::DASHDASH<< Symbols::CRLF;

 

Regards,

Frank Y.