vote up 0 vote down star

Hi! I need some help understanding a peculiar issue I'm having when using asio.

I've a client -server app, with a c++ client(using boost asio) sending 2 byte hearbeat (say, every second) to a server(written in java) (and receiving lots of data as well).

for a quite a few minutes the server correctly receives the 2 byte HeartBeat, but after that the server's 'read' complains abt a 0 byte read, and closes the connection (which I guess is correct for a blocking read). The client however always prints out that it's been transferring the correct amount.

I've experimented with almost all variants of the 'write' family of functions. are all of them implemented in terms of 'write_some' and does that mean that this behavior is expected?

I must be making some mistake in my usage, basically I'm looking for something within asio that guarantees a write ( at least a byte) . please help me figure out where I'm going wrong(and if any further info is reqd.)... any advice, most appreciated! thanks!

flag

0% accept rate

1 Answer

vote up 0 vote down

If it's sockets, you can't "guarantee a write"; what if the network is down, the cable yanked out, the switch is on fire, or the power is out worldwide and your computer happens to be the only one running on batteries?

That said, it sounds as if you have some kind of buffering/emptying issue perhaps, check over your read code to make sure it really consumes all data that appears.

A 0-byte read is not an error, look over that code again, check for any error status flags on the socket(s) and so on. A read can fail with a "AGAIN"-status, which really means you should try again.

link|flag
Hi Unwind, thanks for your reply. The 'read' is in the java server , and going by the code, it seems to be like the classic 'select' followed by a ('blocking') 'read', ( I thought EAGAIN was only if non-blocking was set) . all it's other java clients have no problem. I'm a bit confused on 0 byte read on a 'normal' blocking read call ( all the n/w books and docs mention read<=0 as a eof/failure ).. while a blocking write can be short(and not tfr all the bytes in one go) , can it ever be sending a 0 tcp payload? – ppx Jul 6 at 9:20
read returning 0 is pretty much a standard way of saying "the other end closed the tcp connection". Verify it with e.g. a network monitor like wireshark. – nos Jul 6 at 10:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.