I use protocol buffers to make data structure and on the server end I write the following code to send a message using Java while I receive the message on the client end using C.
Java Server:
OutputStream os = socket.getOutputStream();
GameResponse.Builder builder=GameResponse.newBuilder();
builder.build().writeTo(os);
os.flush();
os.close();
C Client:
while ((n = ::recv(sockfd, buf, BUFFLEN, 0)) > 0) {
write(STDOUT_FILENO, buf, n);
len += n;
}
Turns out the message sending from server was correct but it could not be received on the client. Looks like the while loop never break it went into a dead loop. We supposed it might be the reason that the C recv function never got a EOF to end the data transferring...
writeDelimitedTo(os)and why you are not using protobuf API at client side? – Nikolay Kuznetsov Jan 16 at 5:44::in C. – n.m. Jan 16 at 6:16os.close()actually closes the socket? The recv function will return 0 only when the connection is broken, otherwise it will just hang waiting for data. – Dariusz Jan 16 at 6:54