socket.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:10k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #ifndef __SYS_TPI_SOCKET_H__
  2. #ifndef __SYS_SOCKET_H__
  3. #define __SYS_SOCKET_H__
  4. /*
  5.  * Copyright (c) 1982,1985, 1986 Regents of the University of California.
  6.  * All rights reserved.  The Berkeley software License Agreement
  7.  * specifies the terms and conditions for redistribution.
  8.  *
  9.  * @(#)socket.h 7.1 (Berkeley) 6/4/86
  10.  */
  11. #include <sys/cdefs.h>
  12. #include <sys/bsd_types.h>
  13. /*
  14.  * Definitions related to sockets: types, address families, options.
  15.  */
  16. /*
  17.  * Types
  18.  */
  19. #ifdef _STYPES_LATER /* old ABI */
  20. #define SOCK_STREAM 1 /* stream socket */
  21. #define SOCK_DGRAM 2 /* datagram socket */
  22. #define SOCK_RAW 3 /* raw-protocol interface */
  23. #define SOCK_RDM 4 /* reliably-delivered message */
  24. #define SOCK_SEQPACKET 5 /* sequenced packet stream */
  25. #else /* !_STYPES_LATER, new ABI */
  26. #ifndef NC_TPI_CLTS
  27. #define NC_TPI_CLTS 1 /* must agree with netconfig.h */
  28. #define NC_TPI_COTS 2 /* must agree with netconfig.h */
  29. #define NC_TPI_COTS_ORD 3 /* must agree with netconfig.h */
  30. #define NC_TPI_RAW 4 /* must agree with netconfig.h */
  31. #endif /* !NC_TPI_CLTS */
  32. #define SOCK_DGRAM NC_TPI_CLTS /* datagram socket */
  33. #define SOCK_STREAM NC_TPI_COTS /* stream socket */
  34. #define SOCK_RAW NC_TPI_RAW /* raw-protocol interface */
  35. #define SOCK_RDM 5 /* reliably-delivered message */
  36. #define SOCK_SEQPACKET 6 /* sequenced packet stream */
  37. #ifdef _KERNEL
  38. #define IRIX4_SOCK_STREAM 1 /* stream socket */
  39. #define IRIX4_SOCK_DGRAM 2 /* datagram socket */
  40. #define IRIX4_SOCK_RAW 3 /* raw-protocol interface */
  41. #define IRIX4_SOCK_RDM 4 /* reliably-delivered message */
  42. #define IRIX4_SOCK_SEQPACKET 5 /* sequenced packet stream */
  43. #endif /* _KERNEL */
  44. #endif /* _STYPES_LATER */
  45. /*
  46.  * Option flags per-socket.
  47.  */
  48. #define SO_DEBUG 0x0001 /* turn on debugging info recording */
  49. #define SO_ACCEPTCONN 0x0002 /* socket has had listen() */
  50. #define SO_REUSEADDR 0x0004 /* allow local address reuse */
  51. #define SO_KEEPALIVE 0x0008 /* keep connections alive */
  52. #define SO_DONTROUTE 0x0010 /* just use interface addresses */
  53. #define SO_BROADCAST 0x0020 /* permit sending of broadcast msgs */
  54. #define SO_USELOOPBACK 0x0040 /* bypass hardware when possible */
  55. #define SO_LINGER 0x0080 /* linger on close if data present */
  56. #define SO_OOBINLINE 0x0100 /* leave received OOB data in line */
  57. #define SO_REUSEPORT 0x0200 /* allow local address,port reuse */
  58. #define SO_ORDREL 0x0200 /* MIPS ABI - unimplemented */
  59. #define SO_IMASOCKET 0x0400 /* use libsocket (not TLI) semantics */
  60. #define SO_CHAMELEON 0x1000 /* (cipso) set label to 1st req rcvd */
  61. /*
  62.  * Additional options, not kept in so_options.
  63.  */
  64. #define SO_SNDBUF 0x1001 /* send buffer size */
  65. #define SO_RCVBUF 0x1002 /* receive buffer size */
  66. #define SO_SNDLOWAT 0x1003 /* send low-water mark */
  67. #define SO_RCVLOWAT 0x1004 /* receive low-water mark */
  68. #define SO_SNDTIMEO 0x1005 /* send timeout */
  69. #define SO_RCVTIMEO 0x1006 /* receive timeout */
  70. #define SO_ERROR 0x1007 /* get error status and clear */
  71. #define SO_TYPE 0x1008 /* get socket type */
  72. #define SO_PROTOTYPE 0x1009 /* get protocol type (libsocket) */
  73. /*
  74.  * Structure used for manipulating linger option.
  75.  */
  76. struct linger {
  77. int l_onoff; /* option on/off */
  78. int l_linger; /* linger time */
  79. };
  80. /*
  81.  * Level number for (get/set)sockopt() to apply to socket itself.
  82.  */
  83. #define SOL_SOCKET 0xffff /* options for socket level */
  84. /*
  85.  * Address families.
  86.  * XTP really is not an address family, but is included here to take
  87.  * up space, because other AF_ entries are numerically equal to their
  88.  * PF_ counterparts.
  89.  */
  90. #define AF_UNSPEC 0 /* unspecified */
  91. #define AF_UNIX 1 /* local to host (pipes, portals) */
  92. #define AF_INET 2 /* internetwork: UDP, TCP, etc. */
  93. #define AF_IMPLINK 3 /* arpanet imp addresses */
  94. #define AF_PUP 4 /* pup protocols: e.g. BSP */
  95. #define AF_CHAOS 5 /* mit CHAOS protocols */
  96. #define AF_NS 6 /* XEROX NS protocols */
  97. #define AF_ISO 7 /* ISO protocols */
  98. #define AF_ECMA 8 /* european computer manufacturers */
  99. #define AF_DATAKIT 9 /* datakit protocols */
  100. #define AF_CCITT 10 /* CCITT protocols, X.25 etc */
  101. #define AF_SNA 11 /* IBM SNA */
  102. #define AF_DECnet 12 /* DECnet */
  103. #define AF_DLI 13 /* DEC Direct data link interface */
  104. #define AF_LAT 14 /* LAT */
  105. #define AF_HYLINK 15 /* NSC Hyperchannel */
  106. #define AF_APPLETALK 16 /* Apple Talk */
  107. #define AF_ROUTE 17 /* Internal Routing Protocol */
  108. #ifdef __sgi
  109. #define AF_RAW 18 /* Raw link layer interface */
  110. #else
  111. #define AF_LINK 18 /* Link layer interface */
  112. #endif
  113. #define pseudo_AF_XTP 19 /* eXpress Transfer Protocol (no AF) */
  114. /* MIPS ABI VALUES - unimplemented */
  115. #define AF_NIT 17 /* Network Interface Tap */
  116. #define AF_802 18 /* IEEE 802.2, also ISO 8802 */
  117. #define AF_OSI 19 /* umbrella for all families used */
  118. #define AF_X25 20 /* CCITT X.25 in particular */
  119. #define AF_OSINET 21 /* AFI = 47, IDI = 4 */
  120. #define AF_GOSIP 22 /* U.S. Government OSI */
  121. #define AF_SDL 23 /* SGI Data Link for DLPI */
  122. #define AF_MAX (AF_SDL+1)
  123. /*
  124.  * Structure used by kernel to store most
  125.  * addresses.
  126.  */
  127. struct sockaddr {
  128. u_short sa_family; /* address family */
  129. char sa_data[14]; /* up to 14 bytes of direct address */
  130. };
  131. /*
  132.  * Structure used by kernel to pass protocol
  133.  * information in raw sockets.
  134.  */
  135. struct sockproto {
  136. u_short sp_family; /* address family */
  137. u_short sp_protocol; /* protocol */
  138. };
  139. /*
  140.  * An option specification consists of an opthdr, followed by the value of
  141.  * the option.  An options buffer contains one or more options.  The len
  142.  * field of opthdr specifies the length of the option value in bytes.  This
  143.  * length must be a multiple of sizeof(long) (use OPTLEN macro).
  144.  */
  145. struct opthdr {
  146.         long            level;  /* protocol level affected */
  147.         long            name;   /* option to modify */
  148.         long            len;    /* length of option value */
  149. };
  150. #define OPTLEN(x) ((((x) + sizeof(long) - 1) / sizeof(long)) * sizeof(long))
  151. #define OPTVAL(opt) ((char *)(opt + 1))
  152. /*
  153.  * the optdefault structure is used for internal tables of option default
  154.  * values.
  155.  */
  156. struct optdefault {
  157. int optname; /* the option */
  158. char *val; /* ptr to default value */
  159. int len; /* length of value */
  160. };
  161. struct tpisocket;
  162. struct T_optmgmt_req;
  163. struct msgb;
  164. /*
  165.  * the opproc structure is used to build tables of options processing
  166.  * functions for dooptions().
  167.  */
  168. struct opproc {
  169. int level;   /* options level this function handles */
  170. int (*func)(struct tpisocket *, struct T_optmgmt_req *,
  171. struct opthdr *, struct msgb *);
  172. /* the function */
  173. };
  174. /*
  175.  * This structure is used to encode pseudo system calls
  176.  */
  177. struct socksysreq {
  178. int             args[7];
  179. };
  180. /*
  181.  * This structure is used for adding new protocols to the list supported by
  182.  * sockets.
  183.  */
  184. struct socknewproto {
  185. int             family; /* address family (AF_INET, etc.) */
  186. int             type; /* protocol type (SOCK_STREAM, etc.) */
  187. int             proto; /* per family proto number */
  188. dev_t           dev; /* major/minor to use (must be a clone) */
  189. int             flags; /* protosw flags */
  190. };
  191. /*
  192.  * Protocol families, same as address families for now.
  193.  */
  194. #define PF_UNSPEC AF_UNSPEC
  195. #define PF_UNIX AF_UNIX
  196. #define PF_INET AF_INET
  197. #define PF_IMPLINK AF_IMPLINK
  198. #define PF_PUP AF_PUP
  199. #define PF_CHAOS AF_CHAOS
  200. #define PF_NS AF_NS
  201. #define PF_ISO AF_ISO
  202. #define PF_ECMA AF_ECMA
  203. #define PF_DATAKIT AF_DATAKIT
  204. #define PF_CCITT AF_CCITT
  205. #define PF_SNA AF_SNA
  206. #define PF_DECnet AF_DECnet
  207. #define PF_DLI AF_DLI
  208. #define PF_LAT AF_LAT
  209. #define PF_HYLINK AF_HYLINK
  210. #define PF_APPLETALK AF_APPLETALK
  211. #define PF_ROUTE AF_ROUTE
  212. #define PF_LINK AF_LINK
  213. #define PF_XTP pseudo_AF_XTP /* really just proto family, no AF */
  214. #ifdef __sgi
  215. #define PF_RAW AF_RAW
  216. #endif
  217. /* MIPS ABI VALUES - unimplemented */
  218. #define PF_NIT AF_NIT /* Network Interface Tap */
  219. #define PF_802 AF_802 /* IEEE 802.2, also ISO 8802 */
  220. #define PF_OSI AF_OSI /* umbrella for all families used */
  221. #define PF_X25 AF_X25 /* CCITT X.25 in particular */
  222. #define PF_OSINET AF_OSINET /* AFI = 47, IDI = 4 */
  223. #define PF_GOSIP AF_GOSIP /* U.S. Government OSI */
  224. #define PF_MAX AF_MAX
  225. /*
  226.  * Maximum queue length specifiable by listen.
  227.  */
  228. #define SOMAXCONN 5
  229. /*
  230.  * Message header for recvmsg and sendmsg calls.
  231.  */
  232. struct msghdr {
  233. caddr_t msg_name; /* optional address */
  234. int msg_namelen; /* size of address */
  235. struct iovec *msg_iov; /* scatter/gather array */
  236. int msg_iovlen; /* # elements in msg_iov */
  237. caddr_t msg_accrights; /* access rights sent/received */
  238. int msg_accrightslen;
  239. };
  240. #define MSG_OOB 0x1 /* process out-of-band data */
  241. #define MSG_PEEK 0x2 /* peek at incoming message */
  242. #define MSG_DONTROUTE 0x4 /* send without using routing tables */
  243. #define MSG_EOR 0x8 /* data completes record (OSI only) */
  244. #ifdef XTP
  245. #define MSG_BTAG 0x40 /* XTP packet with BTAG field */
  246. #define MSG_ETAG 0x80 /* XTP packet with ETAG field */
  247. #endif
  248. #define MSG_MAXIOVLEN 16
  249. __BEGIN_DECLS
  250. int accept          __P_((int, struct sockaddr *, int *));
  251. int bind            __P_((int, const struct sockaddr *, int));
  252. int connect         __P_((int, const struct sockaddr *, int));
  253. int getpeername     __P_((int, struct sockaddr *, int *));
  254. int getsockname     __P_((int, struct sockaddr *, int *));
  255. int getsockopt      __P_((int, int, int, void *, int *));
  256. int listen          __P_((int, int));
  257. ssize_t recv        __P_((int, void *, size_t, int));
  258. ssize_t recvfrom    __P_((int, void *, size_t, int, struct sockaddr *, int *));
  259. int recvmsg         __P_((int, struct msghdr *, int));
  260. ssize_t send        __P_((int, const void *, size_t, int));
  261. ssize_t sendto      __P_((int, const void *, size_t, int, 
  262.                         const struct sockaddr *, int));
  263. int sendmsg         __P_((int, const struct msghdr *, int));
  264. int setsockopt      __P_((int, int, int, const void *, int));
  265. int shutdown        __P_((int, int));
  266. int socket          __P_((int, int, int));
  267. int socketpair      __P_((int, int, int, int *));
  268. __END_DECLS
  269. #endif /* !__SYS_SOCKET_H__ */
  270. #endif /* !__SYS_TPI_SOCKET_H__ */