I've got a byte buffer of around 110K in size, currently I just send it like this:
AStream.Write(oData)
but I get a variety of problems,
java.io.IOException: Broken pipe and java.io.IOException: Connection reset by peer
Is there a maximum size limit to the amount of data asynchstreams supports, or how can I debug this problem?
AStream.Write(oData)
but I get a variety of problems,
java.io.IOException: Broken pipe and java.io.IOException: Connection reset by peer
Is there a maximum size limit to the amount of data asynchstreams supports, or how can I debug this problem?