Lightwight socket IO wrapper

Marko Rauhamaa marko at pacujo.net
Mon Sep 21 03:57:24 EDT 2015


Michael Ströder <michael at stroeder.com>:

> Marko Rauhamaa wrote:
>> I recommend using socket.TCP_CORK with socket.TCP_NODELAY where they
>> are available (Linux).
>
> If these options are not available are both option constants also not
> available? Or does the implementation have to look into sys.platform?

   >>> import socket
   >>> 'TCP_CORK' in dir(socket)
   True

The TCP_NODELAY option is available everywhere but has special semantics
with TCP_CORK.


Marko



More information about the Python-list mailing list