Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. # /opt/jython/Lib/_socket.py
  2.  
  3. SOCK_DGRAM = 1
  4. SOCK_STREAM = 2
  5. SOCK_RAW = 3 # not supported
  6. SOCK_RDM = 4 # not supported
  7. SOCK_SEQPACKET = 5 # not supported
  8.  
  9. SOL_SOCKET = 0xFFFF
  10.  
  11. IPPROTO_AH = 51 # not supported
  12. IPPROTO_DSTOPTS = 60 # not supported
  13. IPPROTO_ESP = 50 # not supported
  14. IPPROTO_FRAGMENT = 44 # not supported
  15. IPPROTO_GGP = 3 # not supported
  16. IPPROTO_HOPOPTS = 0 # not supported
  17. IPPROTO_ICMP = 1 # not supported
  18. IPPROTO_ICMPV6 = 58 # not supported
  19. IPPROTO_IDP = 22 # not supported
  20. IPPROTO_IGMP = 2 # not supported
  21. IPPROTO_IP = 0
  22. IPPROTO_IPV4 = 4 # not supported
  23. IPPROTO_IPV6 = 41 # not supported
  24. IPPROTO_MAX = 256 # not supported
  25. IPPROTO_ND = 77 # not supported
  26. IPPROTO_NONE = 59 # not supported
  27. IPPROTO_PUP = 12 # not supported
  28. IPPROTO_RAW = 255 # not supported
  29. IPPROTO_ROUTING = 43 # not supported
  30. IPPROTO_TCP = 6
  31. IPPROTO_UDP = 17
  32. SOL_TCP = 6 # Jonathan Harms
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement