Get list of available socket options : socket « Network « Python Tutorial






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








21.2.socket
21.2.1.Get list of available socket options
21.2.2.Implementing Internet Communication
21.2.3.A server that will receive a connection from a client, send a string to the client, and close the connection.
21.2.4.socket.socket(socket.AF_INET, socket.SOCK_STREAM)
21.2.5.Looking up port number
21.2.6.Get socket name and peer name
21.2.7.Send 10M of data with socket
21.2.8.Echo Server