I am trying to make sure that every time I call the socket.send function my buffer is sent (flushed) to my server (which is in C using unix socket).
From my understa
This is a common question about TCP protocol. TCP itself has no way to send data in specific chunks. It's designed only for sending stream of data. If you need such functionality, you should implement it yourself. For example, send your chunks in separate lines or first send chunk size and then the chunk itself.
In most cases, you don't need to care about the Naggle algorithm. This algorithm is better described by the name TCP_NODELAY. If you disable it, you may achieve smaller delays for small chunks but lower speed for large chunks at the same time.
TCP does not provide any kind of guaranteed "packet" sending to the other end. You are sending data as fast as you can, and TCP is helpfully batching up the data into as much as it can send at once. Your server is receiving data 4096 bytes at a time, probably because that's what it asked for (in a recv()
call).
TCP is a stream protocol and therefore you will have to implement some kind of framing yourself. There are no built-in message boundaries.
The only way I got a flush to work (back to a C client) was to use:
my_writer_obj = mysock.makefile(mode='w', ...)
my_writer_obj.write('my stuff')
my_writer_obj.flush()
The big advantage is that my_writer_obj defaults to text mode, so no more byte translation.
creating a reader object did not go as smoothly, but I did not need a flush on that side.
There is no way to ensure the size of the data chunks that are sent. If you want to make sure that all the data that you want to send is send, you can close the connection:
self.sck.close()
Note also, that n = socket.send() returns the number of actual sent bytes. If you definitely want to send all data, you should use
self.sck.sendall()
or loop over the data sending:
while data:
n = self.sck.send(data)
data = data[n:]
(But that is roughly the same as sendall() ). If you want to receive the data in bigger chunks, you can increase the size of the buffer in recv(), but this only makes the possible chunk size bigger. There is no guaranty that the data arrives in these sizes.