10 lines
117 B
Python
10 lines
117 B
Python
|
import socket
|
||
|
|
||
|
solist=[x for x in dir(socket) if x.startswith('SO_')]
|
||
|
|
||
|
solist.sort()
|
||
|
|
||
|
for x in solist:
|
||
|
|
||
|
print(x)
|