Get list of available socket options : Socket Option : Network PYTHON examples


PYTHON examples » Network » Socket Option »

 

Get list of available socket options


Get list of available socket options

import socket
solist = [for x in dir(socketif x.startswith('SO_')]
solist.sort()
for x in solist:
    print x

           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Network
» Socket Option