1
0

socket.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. struct msghdr
  2. {
  3. void *msg_name;
  4. socklen_t msg_namelen;
  5. struct iovec *msg_iov;
  6. int msg_iovlen;
  7. void *msg_control;
  8. socklen_t msg_controllen;
  9. int msg_flags;
  10. };
  11. struct cmsghdr
  12. {
  13. socklen_t cmsg_len;
  14. int cmsg_level;
  15. int cmsg_type;
  16. };
  17. struct ucred
  18. {
  19. pid_t pid;
  20. uid_t uid;
  21. gid_t gid;
  22. };
  23. struct linger
  24. {
  25. int l_onoff;
  26. int l_linger;
  27. };
  28. #define SHUT_RD 0
  29. #define SHUT_WD 1
  30. #define SHUT_RDWR 2
  31. #define SOCK_STREAM 1
  32. #define SOCK_DGRAM 2
  33. #define SOCK_RAW 3
  34. #define SOCK_RDM 4
  35. #define SOCK_SEQPACKET 5
  36. #define SOCK_PACKET 10
  37. #define AF_UNSPEC 0
  38. #define AF_LOCAL 1
  39. #define AF_UNIX AF_LOCAL
  40. #define AF_FILE AF_LOCAL
  41. #define AF_INET 2
  42. #define AF_AX25 3
  43. #define AF_IPX 4
  44. #define AF_APPLETALK 5
  45. #define AF_NETROM 6
  46. #define AF_BRIDGE 7
  47. #define AF_ATMPVC 8
  48. #define AF_X25 9
  49. #define AF_INET6 10
  50. #define AF_ROSE 11
  51. #define AF_DECnet 12
  52. #define AF_NETBEUI 13
  53. #define AF_SECURITY 14
  54. #define AF_KEY 15
  55. #define AF_NETLINK 16
  56. #define AF_ROUTE AF_NETLINK
  57. #define AF_PACKET 17
  58. #define AF_ASH 18
  59. #define AF_ECONET 19
  60. #define AF_ATMSVC 20
  61. #define AF_SNA 22
  62. #define AF_IRDA 23
  63. #define AF_PPPOX 24
  64. #define AF_WANPIPE 25
  65. #define AF_BLUETOOTH 31
  66. #define PF_UNSPEC 0
  67. #define PF_LOCAL 1
  68. #define PF_UNIX PF_LOCAL
  69. #define PF_FILE PF_LOCAL
  70. #define PF_INET 2
  71. #define PF_AX25 3
  72. #define PF_IPX 4
  73. #define PF_APPLETALK 5
  74. #define PF_NETROM 6
  75. #define PF_BRIDGE 7
  76. #define PF_ATMPVC 8
  77. #define PF_X25 9
  78. #define PF_INET6 10
  79. #define PF_ROSE 11
  80. #define PF_DECnet 12
  81. #define PF_NETBEUI 13
  82. #define PF_SECURITY 14
  83. #define PF_KEY 15
  84. #define PF_NETLINK 16
  85. #define PF_ROUTE PF_NETLINK
  86. #define PF_PACKET 17
  87. #define PF_ASH 18
  88. #define PF_ECONET 19
  89. #define PF_ATMSVC 20
  90. #define PF_SNA 22
  91. #define PF_IRDA 23
  92. #define PF_PPPOX 24
  93. #define PF_WANPIPE 25
  94. #define PF_BLUETOOTH 31
  95. #define SO_DEBUG 1
  96. #define SO_REUSEADDR 2
  97. #define SO_TYPE 3
  98. #define SO_ERROR 4
  99. #define SO_DONTROUTE 5
  100. #define SO_BROADCAST 6
  101. #define SO_SNDBUF 7
  102. #define SO_RCVBUF 8
  103. #define SO_KEEPALIVE 9
  104. #define SO_OOBINLINE 10
  105. #define SO_NO_CHECK 11
  106. #define SO_PRIORITY 12
  107. #define SO_LINGER 13
  108. #define SO_BSDCOMPAT 14
  109. #define SO_REUSEPORT 15
  110. #define SO_PASSCRED 16
  111. #define SO_PEERCRED 17
  112. #define SO_RCVLOWAT 18
  113. #define SO_SNDLOWAT 19
  114. #define SO_RCVTIMEO 20
  115. #define SO_SNDTIMEO 21
  116. #define SO_SECURITY_AUTHENTICATION 22
  117. #define SO_SECURITY_ENCRYPTION_TRANSPORT 23
  118. #define SO_SECURITY_ENCRYPTION_NETWORK 24
  119. #define SO_BINDTODEVICE 25
  120. #define SO_ATTACH_FILTER 26
  121. #define SO_DETACH_FILTER 27
  122. #define SO_PEERNAME 28
  123. #define SO_TIMESTAMP 29
  124. #define SCM_TIMESTAMP SO_TIMESTAMP
  125. #define SO_ACCEPTCONN 30
  126. #define SOL_SOCKET 1
  127. /* ??? */
  128. #define SOL_RAW 255
  129. #define SOL_DECNET 261
  130. #define SOL_X25 262
  131. #define SOL_PACKET 263
  132. #define SOL_ATM 264
  133. #define SOL_AAL 265
  134. #define SOL_IRDA 266
  135. #define SOMAXCONN 128
  136. #define MSG_OOB 0x0001
  137. #define MSG_PEEK 0x0002
  138. #define MSG_DONTROUTE 0x0004
  139. #define MSG_CTRUNC 0x0008
  140. #define MSG_PROXY 0x0010
  141. #define MSG_TRUNC 0x0020
  142. #define MSG_DONTWAIT 0x0040
  143. #define MSG_EOR 0x0080
  144. #define MSG_WAITALL 0x0100
  145. #define MSG_FIN 0x0200
  146. #define MSD_SYN 0x0400
  147. #define MSG_CONFIRM 0x0800
  148. #define MSG_RST 0x1000
  149. #define MSG_ERRQUEUE 0x2000
  150. #define MSG_NOSIGNAL 0x4000
  151. #define MSG_MORE 0x8000
  152. /* Internal use only!! to make CMSG_NXTHDR definition readable by mortals */
  153. #define __CMSG_LEN(cmsg) (((cmsg)->cmsg_len + sizeof(long) - 1) & ~(long)(sizeof(long) - 1))
  154. #define __CMSG_NEXT(cmsg) ((unsigned char *)(cmsg) + __CMSG_LEN(cmsg))
  155. #define __MHDR_END(mhdr) ((unsigned char *)(mhdr)->msg_control + (mhdr)->msg_controllen)
  156. #define CMSG_DATA(cmsg) ((unsigned char *) (((struct cmsghdr *)(cmsg)) + 1))
  157. #define CMSG_NXTHDR(mhdr, cmsg) ((cmsg)->cmsg_len < sizeof (struct cmsghdr) ? (struct cmsghdr *)0 : \
  158. (__CMSG_NEXT(cmsg) + sizeof (struct cmsghdr) >= __MHDR_END(mhdr) ? (struct cmsghdr *)0 : \
  159. ((struct cmsghdr *)__CMSG_NEXT(cmsg))))
  160. #define CMSG_FIRSTHDR(mhdr) ((size_t) (mhdr)->msg_controllen >= sizeof (struct cmsghdr) ? (struct cmsghdr *) (mhdr)->msg_control : (struct cmsghdr *) 0)
  161. /* Are these valid? */
  162. #define CMSG_ALIGN(len) (((len) + sizeof (size_t) - 1) & (size_t) ~(sizeof (size_t) - 1))
  163. #define CMSG_SPACE(len) (CMSG_ALIGN (len) + CMSG_ALIGN (sizeof (struct cmsghdr)))
  164. #define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len))
  165. #define SCM_RIGHTS 0x01
  166. #define SCM_CREDENTIALS 0x02