Hi,
I fixed segmentation issue (issue 750) by changing to use following unpack statements, it seems that unpack only worked for raw buffer, it could not compile for boost::asio::streambuf:
boost::asio::streambuf sb;
msgpack::object_handle oh = msgpack::unpack(sb, size);
error: no matching function for call to ‘unpack(boost::asio::streambuf&, int)’
Any luck I can use unpack for boost::asio::streambuf?
BTW, are there any msgpack forum or mailing list for asking C++ msgpack questions?
Thank you.