
21 Feb
2010
21 Feb
'10
2:19 p.m.
I can't seem to write to my tcp socket with boost::asio any buffer with len > 14:
uint8_t tmp[20]; int len = 20; asio::write(_socket, buffer(tmp, len));
if len > 14, it will always only return 14 bytes written!
If len < 14, it writes correctly.
This doesn't seem reasonable. Do you have a minimal reproducing code? Maybe you try to pass a local buffer to an async. function?