akira added the comment:

count and blocksize are completely different.

*count* specifies how many bytes at most socket.sendfile should sent overall. 
It may change the result i.e., it may not be necessary that the file is read 
until EOF.

It has the same meaning as *nbytes* parameter for os.sendfile or *nbytes* in 
msg217121

*blocksize* doesn't change how many bytes is read in the end by 
socket.sendfile. At most it may affect time performance. It is 
*nbytes_per_send* in msg217121

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue17552>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to