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

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1982, 1985, 1986 Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that the above copyright notice and this paragraph are
  7.  * duplicated in all such forms and that any documentation,
  8.  * advertising materials, and other materials related to such
  9.  * distribution and use acknowledge that the software was developed
  10.  * by the University of California, Berkeley.  The name of the
  11.  * University may not be used to endorse or promote products derived
  12.  * from this software without specific prior written permission.
  13.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16.  *
  17.  * @(#)socket.h 7.3 (Berkeley) 6/27/88
  18.  */
  19. #ifndef _SYS_SOCKET_H
  20. #define _SYS_SOCKET_H
  21. /*
  22.  * Types of sockets
  23.  */
  24. #define SOCK_STREAM 2 /* stream socket */
  25. #define SOCK_DGRAM 1 /* datagram socket */
  26. #define SOCK_RAW 4 /* raw-protocol interface */
  27. #define SOCK_RDM 5 /* reliably-delivered message */
  28. #define SOCK_SEQPACKET 6 /* sequenced packet stream */
  29. /*
  30.  * Option flags per-socket.
  31.  */
  32. #define SO_DEBUG 0x0001 /* turn on debugging info recording */
  33. #define SO_ACCEPTCONN 0x0002 /* socket has had listen() */
  34. #define SO_REUSEADDR 0x0004 /* allow local address reuse */
  35. #define SO_KEEPALIVE 0x0008 /* keep connections alive */
  36. #define SO_DONTROUTE 0x0010 /* just use interface addresses */
  37. #define SO_BROADCAST 0x0020 /* permit sending of broadcast msgs */
  38. #define SO_USELOOPBACK 0x0040 /* bypass hardware when possible */
  39. #define SO_LINGER 0x0080 /* linger on close if data present */
  40. #define SO_OOBINLINE 0x0100 /* leave received OOB data in line */
  41. /*
  42.  * Additional options, not kept in so_options.
  43.  */
  44. #define SO_SNDBUF 0x1001 /* send buffer size */
  45. #define SO_RCVBUF 0x1002 /* receive buffer size */
  46. #define SO_SNDLOWAT 0x1003 /* send low-water mark */
  47. #define SO_RCVLOWAT 0x1004 /* receive low-water mark */
  48. #define SO_SNDTIMEO 0x1005 /* send timeout */
  49. #define SO_RCVTIMEO 0x1006 /* receive timeout */
  50. #define SO_ERROR 0x1007 /* get error status and clear */
  51. #define SO_TYPE 0x1008 /* get socket type */
  52. #define SO_PROTOTYPE    0x1009      /* get/set protocol type */
  53. /*
  54.  * Level number for (get/set)sockopt() to apply to socket itself.
  55.  */
  56. #define SOL_SOCKET 0xffff /* options for socket level */
  57. /*
  58.  * Address families.
  59.  */
  60. #define AF_UNSPEC 0 /* unspecified */
  61. #define AF_UNIX 1 /* local to host (pipes, portals) */
  62. #define AF_INET 2 /* internetwork: UDP, TCP, etc. */
  63. #define AF_IMPLINK 3 /* arpanet imp addresses */
  64. #define AF_PUP 4 /* pup protocols: e.g. BSP */
  65. #define AF_CHAOS 5 /* mit CHAOS protocols */
  66. #define AF_NS 6 /* XEROX NS protocols */
  67. #define AF_NBS 7 /* nbs protocols */
  68. #define AF_ECMA 8 /* european computer manufacturers */
  69. #define AF_DATAKIT 9 /* datakit protocols */
  70. #define AF_CCITT 10 /* CCITT protocols, X.25 etc */
  71. #define AF_SNA 11 /* IBM SNA */
  72. #define AF_DECnet 12 /* DECnet */
  73. #define AF_DLI 13 /* Direct data link interface */
  74. #define AF_LAT 14 /* LAT */
  75. #define AF_HYLINK 15 /* NSC Hyperchannel */
  76. #define AF_APPLETALK 16 /* Apple Talk */
  77. #define AF_NIT 17 /* NIT */
  78. #define AF_802          18          /* IEEE 802.2, also ISO 8802 */
  79. #define AF_ISO          19          /* ISO protocols */
  80. #define AF_OSI          AF_ISO
  81. #define AF_X25          20          /* CCITT X.25 in particular */
  82. #define AF_OSINET       21
  83. #define AF_GOSIP        22
  84. #define AF_MAX          22
  85. /*
  86.  * Structure used by kernel to store most
  87.  * addresses.
  88.  */
  89. struct sockaddr {
  90. unsigned short sa_family; /* address family */
  91. char           sa_data[14]; /* up to 14 bytes of direct address */
  92. };
  93. /*
  94.  * Structure used by kernel to pass protocol
  95.  * information in raw sockets.
  96.  */
  97. struct sockproto {
  98. unsigned short sp_family; /* address family */
  99. unsigned short sp_protocol; /* protocol */
  100. };
  101. /*
  102.  * Protocol families, same as address families for now.
  103.  */
  104. #define PF_UNSPEC AF_UNSPEC
  105. #define PF_UNIX AF_UNIX
  106. #define PF_INET AF_INET
  107. #define PF_IMPLINK AF_IMPLINK
  108. #define PF_PUP AF_PUP
  109. #define PF_CHAOS AF_CHAOS
  110. #define PF_NS AF_NS
  111. #define PF_NBS AF_NBS
  112. #define PF_ECMA AF_ECMA
  113. #define PF_DATAKIT AF_DATAKIT
  114. #define PF_CCITT AF_CCITT
  115. #define PF_SNA AF_SNA
  116. #define PF_DECnet AF_DECnet
  117. #define PF_DLI AF_DLI
  118. #define PF_LAT AF_LAT
  119. #define PF_HYLINK AF_HYLINK
  120. #define PF_APPLETALK AF_APPLETALK
  121. #define PF_NIT          AF_NIT
  122. #define PF_802          AF_802
  123. #define PF_ISO          AF_ISO
  124. #define PF_OSI          AF_ISO
  125. #define PF_X25          AF_X25
  126. #define PF_OSINET       AF_OSINET
  127. #define PF_GOSIP        AF_GOSIP
  128. #define PF_MAX          AF_MAX
  129. /*
  130.  * Maximum queue length specifiable by listen.
  131.  */
  132. #define SOMAXCONN 5
  133. /*
  134.  * Message header for recvmsg and sendmsg calls.
  135.  */
  136. struct msghdr {
  137. caddr_t msg_name; /* optional address */
  138. int msg_namelen; /* size of address */
  139. struct iovec *msg_iov; /* scatter/gather array */
  140. int msg_iovlen; /* # elements in msg_iov */
  141. caddr_t msg_accrights; /* access rights sent/received */
  142. int msg_accrightslen;
  143. };
  144. #define MSG_OOB 0x1 /* process out-of-band data */
  145. #define MSG_PEEK 0x2 /* peek at incoming message */
  146. #define MSG_DONTROUTE 0x4 /* send without using routing tables */
  147. #define MSG_MAXIOVLEN 16
  148. #include <sys/cdefs.h>
  149. /* 
  150.  * Functions
  151.  */
  152. __BEGIN_DECLS
  153. int accept __P_((int, struct sockaddr *, int *));
  154. int bind __P_((int, const struct sockaddr *, int));
  155. int connect __P_((int, const struct sockaddr *, int));
  156. int listen __P_((int, int));
  157. int socket __P_((int, int, int));
  158. int setsockopt __P_((int, int, int, const void *, int));
  159. int getsockname __P_((int, struct sockaddr *, int *));
  160. int shutdown __P_((int, int));
  161. int       getpeername __P_((int, struct sockaddr *, int *));
  162. __END_DECLS
  163. #endif  /* _SYS_SOCKET_H */