/user/tango/stdc/constants/solaris/socket.d

https://github.com/fawzi/oldTango · D · 113 lines · 80 code · 4 blank · 29 comment · 0 complexity · ca409bcb9e1666907b23e1912ee71ed0 MD5 · raw file

  1. module tango.stdc.constants.solaris.socket;
  2. import tango.stdc.constants.solaris.fcntl: F_GETFL, F_SETFL,O_NONBLOCK;
  3. enum {SOCKET_ERROR = -1}
  4. enum
  5. {
  6. SO_DEBUG = 0x0001 , /* turn on debugging info recording */
  7. SO_BROADCAST = 0x0020 , /* permit sending of broadcast msgs */
  8. SO_REUSEADDR = 0x0004 , /* allow local address reuse */
  9. SO_LINGER = 0x0080 , /* linger on close if data present */
  10. SO_DONTLINGER = ~(SO_LINGER),
  11. SO_OOBINLINE = 0x0100 , /* leave received OOB data in line */
  12. SO_ACCEPTCONN = 0x0002, /* socket has had listen() */
  13. SO_KEEPALIVE = 0x0008 , /* keep connections alive */
  14. SO_DONTROUTE = 0x0010, /* just use interface addresses */
  15. SO_TYPE = 0x1008 , /* get socket type */
  16. /*
  17. * Additional options, not kept in so_options.
  18. */
  19. SO_SNDBUF = 0x1001, /* send buffer size */
  20. SO_RCVBUF = 0x1002, /* receive buffer size */
  21. SO_ERROR = 0x1007 , /* get error status and clear */
  22. // OptionLevel.IP settings
  23. IP_MULTICAST_TTL = 0x11 ,
  24. IP_MULTICAST_LOOP = 0x12 ,
  25. IP_ADD_MEMBERSHIP = 0x13 ,
  26. IP_DROP_MEMBERSHIP = 0x14,
  27. // OptionLevel.TCP settings
  28. TCP_NODELAY = 0x01 ,
  29. }
  30. enum
  31. {
  32. SOL_SOCKET = 0xffff,
  33. }
  34. enum
  35. {
  36. SOCK_STREAM = 1 , /++ sequential, reliable +/
  37. SOCK_DGRAM = 2, /++ connectionless unreliable, max length +/
  38. SOCK_SEQPACKET = 6, /++ sequential, reliable, max length +/
  39. SOCK_RAW = 4,
  40. }
  41. /* Standard well-defined IP protocols. */
  42. enum
  43. {
  44. IPPROTO_IP = 0, /* Dummy protocol for TCP. */
  45. IPPROTO_IPV4 = 0,
  46. IPPROTO_IPV6 = 41, /* IPv6 header. */
  47. IPPROTO_ICMP = 1, /* Internet Control Message Protocol. */
  48. IPPROTO_IGMP = 2, /* Internet Group Management Protocol. */
  49. IPPROTO_TCP = 6, /* Transmission Control Protocol. */
  50. IPPROTO_PUP = 12, /* PUP protocol. */
  51. IPPROTO_UDP = 17, /* User Datagram Protocol. */
  52. IPPROTO_IDP = 22, /* XNS IDP protocol. */
  53. /+
  54. // undefined for cross platform reasons, if you need them ask
  55. IPPROTO_IPIP = 4, /* IPIP tunnels (older KA9Q tunnels use 94). */
  56. IPPROTO_HOPOPTS = 0, /* IPv6 Hop-by-Hop options. */
  57. IPPROTO_EGP = 8, /* Exterior Gateway Protocol. */
  58. IPPROTO_TP = 29, /* SO Transport Protocol Class 4. */
  59. IPPROTO_ROUTING = 43, /* IPv6 routing header. */
  60. IPPROTO_FRAGMENT = 44, /* IPv6 fragmentation header. */
  61. IPPROTO_RSVP = 46, /* Reservation Protocol. */
  62. IPPROTO_GRE = 47, /* General Routing Encapsulation. */
  63. IPPROTO_ESP = 50, /* encapsulating security payload. */
  64. IPPROTO_AH = 51, /* authentication header. */
  65. IPPROTO_ICMPV6 = 58, /* ICMPv6. */
  66. IPPROTO_NONE = 59, /* IPv6 no next header. */
  67. IPPROTO_DSTOPTS = 60, /* IPv6 destination options. */
  68. IPPROTO_MTP = 92, /* Multicast Transport Protocol. */
  69. IPPROTO_ENCAP = 98, /* Encapsulation Header. */
  70. IPPROTO_PIM = 103, /* Protocol Independent Multicast. */
  71. IPPROTO_COMP = 108, /* Compression Header Protocol. */
  72. IPPROTO_SCTP = 132, /* Stream Control Transmission Protocol. */
  73. IPPROTO_RAW = 255, /* Raw IP packets. */
  74. IPPROTO_MAX
  75. +/
  76. }
  77. enum
  78. {
  79. AF_UNSPEC = 0 ,
  80. AF_UNIX = 1 ,
  81. AF_INET = 2 ,
  82. AF_IPX = 4 ,
  83. AF_APPLETALK = 5 ,
  84. AF_INET6 = 26 ,
  85. }
  86. enum : uint
  87. {
  88. SCM_RIGHTS = 0x1010
  89. }
  90. enum
  91. {
  92. SOMAXCONN = 128,
  93. }
  94. enum : uint
  95. {
  96. MSG_CTRUNC = 0x20,
  97. MSG_DONTROUTE = 0x4,
  98. MSG_EOR = 0x8,
  99. MSG_OOB = 0x1,
  100. MSG_PEEK = 0x2,
  101. MSG_TRUNC = 0x10,
  102. MSG_WAITALL = 0x40
  103. }
  104. enum
  105. {
  106. SHUT_RD = 0,
  107. SHUT_WR = 1,
  108. SHUT_RDWR = 2
  109. }