I'm writing two applications (in C), which make several calls to send and receive (e.g. I'm implementing a remote file copy).
I always send a 64 Byte Header which contains the length of the following message body and some other information.
When testing my application on some files I recognized that some recv calls take a pretty long time to complete (about 40 ms). Using strace I found out that it happens first when sending a message body of 377 Bytes (which in this case it the whole content of my file to copy).
The server application starts sending the message body which takes about 48 us. Now the client application consumes about 38 ms to receive these bytes.
From that time on every receive calls consumes that much time, since they are each blocking in a receive and waiting for the reply.
server's strace
[pid 27158] 1292236124.465827 send(6, "\0\0\1\271\0\0\0\0\0\0\0\0core.fwrite\0\0\0\0\0\0\0\0\0"..., 64, 0) = 64 <0.000031>
[pid 27158] 1292236124.466074 send(6, "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0"..., 377, 0) = 377 <0.000048>
client's strace
[pid 27159] 1292236124.466364 recv(4, "\0\0\1\271\0\0\0\0\0\0\0\0core.fwrite\0\0\0\0\0\0\0\0\0"..., 64, 0) = 64 <0.000027>
[pid 27159] 1292236124.466597 recv(4, "\0\0\0\1\0\0\0\0\0\0\0\0\0\0\0\10\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\0"..., 377, 0) = 377 <0.037456>
This problem really gives me a hard time since I do not understand why the receive call on the client takes so much time.
Any hints would be highly appreciated.