-
Bug
-
Resolution: Done
-
Major
-
1.0.3.Final
-
None
-
-
Workaround Exists
-
In file AsyncSenderImpl.java:
line 269 : copy string content to buffer, the buffer now has position n (n is number of bytes in string) and limit == capacity.
line 272: the buffers are passed to send(ByteBuffer[],IOCallback) as is.
line 179: the remaining bytes of the buffers are computed which is limit-position.
Solution: do a ByteBuffer#flip() after line 269.