
17 May
2007
17 May
'07
4:25 p.m.
Dean Michael Berris wrote:
using namespace boost::network; message m; int some_value = 100; m << header("some_header", some_value) << header("multi_value", tags::multi)(another_value)(some_other_value)(yet_another) << body("The quick brown fox jumps over the lazy dog");
std::cout << http::message(m) (url("http://www.boost.org")) (method(http::post)) << std::endl; std::cout << smtp::message(m) (to("boost@lists.boost.org")) << std::endl;
Does that mean the message won't be able to be read incrementally?