WINSOCK.H
上传用户:qiye66666
上传日期:2007-01-03
资源大小:202k
文件大小:28k
源码类别:

TCP/IP协议栈

开发平台:

Visual C++

  1. /* WINSOCK.H--definitions to be used with the WINSOCK.DLL
  2.  *
  3.  * This header file corresponds to version 1.1 of the Windows Sockets specification.
  4.  *
  5.  * This file includes parts which are Copyright (c) 1982-1986 Regents
  6.  * of the University of California.  All rights reserved.  The
  7.  * Berkeley Software License Agreement specifies the terms and
  8.  * conditions for redistribution.
  9.  */
  10. #ifndef _WINSOCKAPI_
  11. #define _WINSOCKAPI_
  12. /*
  13.  * Pull in WINDOWS.H if necessary
  14.  */
  15. #ifndef _INC_WINDOWS
  16. #include <windows.h>
  17. #endif /* _INC_WINDOWS */
  18. /*
  19.  * Basic system type definitions, taken from the BSD file sys/types.h.
  20.  */
  21. typedef unsigned char   u_char;
  22. typedef unsigned short  u_short;
  23. typedef unsigned int    u_int;
  24. typedef unsigned long   u_long;
  25. /*
  26.  * The new type to be used in all
  27.  * instances which refer to sockets.
  28.  */
  29. typedef u_int           SOCKET;
  30. /*
  31.  * Select uses arrays of SOCKETs.  These macros manipulate such
  32.  * arrays.  FD_SETSIZE may be defined by the user before including
  33.  * this file, but the default here should be >= 64.
  34.  *
  35.  * CAVEAT IMPLEMENTOR and USER: THESE MACROS AND TYPES MUST BE
  36.  * INCLUDED IN WINSOCK.H EXACTLY AS SHOWN HERE.
  37.  */
  38. #ifndef FD_SETSIZE
  39. #define FD_SETSIZE      64
  40. #endif /* FD_SETSIZE */
  41. typedef struct fd_set {
  42.         u_short fd_count;               /* how many are SET? */
  43.         SOCKET  fd_array[FD_SETSIZE];   /* an array of SOCKETs */
  44. } fd_set;
  45. extern int PASCAL FAR __WSAFDIsSet(SOCKET, fd_set FAR *);
  46. #define FD_CLR(fd, set) { 
  47.     u_int __i; 
  48.     for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count ; __i++) { 
  49.         if (((fd_set FAR *)(set))->fd_array[__i] == fd) { 
  50.             while (__i < ((fd_set FAR *)(set))->fd_count-1) { 
  51.                 ((fd_set FAR *)(set))->fd_array[__i] = 
  52.                     ((fd_set FAR *)(set))->fd_array[__i+1]; 
  53.                 __i++; 
  54.             } 
  55.             ((fd_set FAR *)(set))->fd_count--; 
  56.             break; 
  57.         } 
  58.     } 
  59. }
  60. #define FD_SET(fd, set) { 
  61.     if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) 
  62.         ((fd_set FAR *)(set))->fd_array[((fd_set FAR *)(set))->fd_count++]=fd;
  63. }
  64. #define FD_ZERO(set) ((fd_set FAR *)(set))->fd_count=0
  65. #define FD_ISSET(fd, set) __WSAFDIsSet((SOCKET)fd, (fd_set FAR *)set)
  66. /*
  67.  * Structure used in select() call, taken from the BSD file sys/time.h.
  68.  */
  69. struct timeval {
  70.         long    tv_sec;         /* seconds */
  71.         long    tv_usec;        /* and microseconds */
  72. };
  73. /*
  74.  * Operations on timevals.
  75.  *
  76.  * NB: timercmp does not work for >= or <=.
  77.  */
  78. #define timerisset(tvp)         ((tvp)->tv_sec || (tvp)->tv_usec)
  79. #define timercmp(tvp, uvp, cmp) 
  80.         ((tvp)->tv_sec cmp (uvp)->tv_sec || 
  81.          (tvp)->tv_sec == (uvp)->tv_sec && (tvp)->tv_usec cmp (uvp)->tv_usec)
  82. #define timerclear(tvp)         (tvp)->tv_sec = (tvp)->tv_usec = 0
  83. /*
  84.  * Commands for ioctlsocket(),  taken from the BSD file fcntl.h.
  85.  *
  86.  *
  87.  * Ioctl's have the command encoded in the lower word,
  88.  * and the size of any in or out parameters in the upper
  89.  * word.  The high 2 bits of the upper word are used
  90.  * to encode the in/out status of the parameter; for now
  91.  * we restrict parameters to at most 128 bytes.
  92.  */
  93. #define IOCPARM_MASK    0x7f            /* parameters must be < 128 bytes */
  94. #define IOC_VOID        0x20000000      /* no parameters */
  95. #define IOC_OUT         0x40000000      /* copy out parameters */
  96. #define IOC_IN          0x80000000      /* copy in parameters */
  97. #define IOC_INOUT       (IOC_IN|IOC_OUT)
  98.                                         /* 0x20000000 distinguishes new &
  99.                                            old ioctl's */
  100. #define _IO(x,y)        (IOC_VOID|(x<<8)|y)
  101. #define _IOR(x,y,t)     (IOC_OUT|(((long)sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y)
  102. #define _IOW(x,y,t)     (IOC_IN|(((long)sizeof(t)&IOCPARM_MASK)<<16)|(x<<8)|y)
  103. #define FIONREAD    _IOR('f', 127, u_long) /* get # bytes to read */
  104. #define FIONBIO     _IOW('f', 126, u_long) /* set/clear non-blocking i/o */
  105. #define FIOASYNC    _IOW('f', 125, u_long) /* set/clear async i/o */
  106. /* Socket I/O Controls */
  107. #define SIOCSHIWAT  _IOW('s',  0, u_long)  /* set high watermark */
  108. #define SIOCGHIWAT  _IOR('s',  1, u_long)  /* get high watermark */
  109. #define SIOCSLOWAT  _IOW('s',  2, u_long)  /* set low watermark */
  110. #define SIOCGLOWAT  _IOR('s',  3, u_long)  /* get low watermark */
  111. #define SIOCATMARK  _IOR('s',  7, u_long)  /* at oob mark? */
  112. /*
  113.  * Structures returned by network data base library, taken from the
  114.  * BSD file netdb.h.  All addresses are supplied in host order, and
  115.  * returned in network order (suitable for use in system calls).
  116.  */
  117. struct  hostent {
  118.         char    FAR * h_name;           /* official name of host */
  119.         char    FAR * FAR * h_aliases;  /* alias list */
  120.         short   h_addrtype;             /* host address type */
  121.         short   h_length;               /* length of address */
  122.         char    FAR * FAR * h_addr_list; /* list of addresses */
  123. #define h_addr  h_addr_list[0]          /* address, for backward compat */
  124. };
  125. /*
  126.  * It is assumed here that a network number
  127.  * fits in 32 bits.
  128.  */
  129. struct  netent {
  130.         char    FAR * n_name;           /* official name of net */
  131.         char    FAR * FAR * n_aliases;  /* alias list */
  132.         short   n_addrtype;             /* net address type */
  133.         u_long  n_net;                  /* network # */
  134. };
  135. struct  servent {
  136.         char    FAR * s_name;           /* official service name */
  137.         char    FAR * FAR * s_aliases;  /* alias list */
  138.         short   s_port;                 /* port # */
  139.         char    FAR * s_proto;          /* protocol to use */
  140. };
  141. struct  protoent {
  142.         char    FAR * p_name;           /* official protocol name */
  143.         char    FAR * FAR * p_aliases;  /* alias list */
  144.         short   p_proto;                /* protocol # */
  145. };
  146. /*
  147.  * Constants and structures defined by the internet system,
  148.  * Per RFC 790, September 1981, taken from the BSD file netinet/in.h.
  149.  */
  150. /*
  151.  * Protocols
  152.  */
  153. #define IPPROTO_IP              0               /* dummy for IP */
  154. #define IPPROTO_ICMP            1               /* control message protocol */
  155. #define IPPROTO_GGP             2               /* gateway^2 (deprecated) */
  156. #define IPPROTO_TCP             6               /* tcp */
  157. #define IPPROTO_PUP             12              /* pup */
  158. #define IPPROTO_UDP             17              /* user datagram protocol */
  159. #define IPPROTO_IDP             22              /* xns idp */
  160. #define IPPROTO_ND              77              /* UNOFFICIAL net disk proto */
  161. #define IPPROTO_RAW             255             /* raw IP packet */
  162. #define IPPROTO_MAX             256
  163. /*
  164.  * Port/socket numbers: network standard functions
  165.  */
  166. #define IPPORT_ECHO             7
  167. #define IPPORT_DISCARD          9
  168. #define IPPORT_SYSTAT           11
  169. #define IPPORT_DAYTIME          13
  170. #define IPPORT_NETSTAT          15
  171. #define IPPORT_FTP              21
  172. #define IPPORT_TELNET           23
  173. #define IPPORT_SMTP             25
  174. #define IPPORT_TIMESERVER       37
  175. #define IPPORT_NAMESERVER       42
  176. #define IPPORT_WHOIS            43
  177. #define IPPORT_MTP              57
  178. /*
  179.  * Port/socket numbers: host specific functions
  180.  */
  181. #define IPPORT_TFTP             69
  182. #define IPPORT_RJE              77
  183. #define IPPORT_FINGER           79
  184. #define IPPORT_TTYLINK          87
  185. #define IPPORT_SUPDUP           95
  186. /*
  187.  * UNIX TCP sockets
  188.  */
  189. #define IPPORT_EXECSERVER       512
  190. #define IPPORT_LOGINSERVER      513
  191. #define IPPORT_CMDSERVER        514
  192. #define IPPORT_EFSSERVER        520
  193. /*
  194.  * UNIX UDP sockets
  195.  */
  196. #define IPPORT_BIFFUDP          512
  197. #define IPPORT_WHOSERVER        513
  198. #define IPPORT_ROUTESERVER      520
  199.                                         /* 520+1 also used */
  200. /*
  201.  * Ports < IPPORT_RESERVED are reserved for
  202.  * privileged processes (e.g. root).
  203.  */
  204. #define IPPORT_RESERVED         1024
  205. /*
  206.  * Link numbers
  207.  */
  208. #define IMPLINK_IP              155
  209. #define IMPLINK_LOWEXPER        156
  210. #define IMPLINK_HIGHEXPER       158
  211. /*
  212.  * Internet address (old style... should be updated)
  213.  */
  214. struct in_addr {
  215.         union {
  216.                 struct { u_char s_b1,s_b2,s_b3,s_b4; } S_un_b;
  217.                 struct { u_short s_w1,s_w2; } S_un_w;
  218.                 u_long S_addr;
  219.         } S_un;
  220. #define s_addr  S_un.S_addr
  221.                                 /* can be used for most tcp & ip code */
  222. #define s_host  S_un.S_un_b.s_b2
  223.                                 /* host on imp */
  224. #define s_net   S_un.S_un_b.s_b1
  225.                                 /* network */
  226. #define s_imp   S_un.S_un_w.s_w2
  227.                                 /* imp */
  228. #define s_impno S_un.S_un_b.s_b4
  229.                                 /* imp # */
  230. #define s_lh    S_un.S_un_b.s_b3
  231.                                 /* logical host */
  232. };
  233. /*
  234.  * Definitions of bits in internet address integers.
  235.  * On subnets, the decomposition of addresses to host and net parts
  236.  * is done according to subnet mask, not the masks here.
  237.  */
  238. #define IN_CLASSA(i)            (((long)(i) & 0x80000000) == 0)
  239. #define IN_CLASSA_NET           0xff000000
  240. #define IN_CLASSA_NSHIFT        24
  241. #define IN_CLASSA_HOST          0x00ffffff
  242. #define IN_CLASSA_MAX           128
  243. #define IN_CLASSB(i)            (((long)(i) & 0xc0000000) == 0x80000000)
  244. #define IN_CLASSB_NET           0xffff0000
  245. #define IN_CLASSB_NSHIFT        16
  246. #define IN_CLASSB_HOST          0x0000ffff
  247. #define IN_CLASSB_MAX           65536
  248. #define IN_CLASSC(i)            (((long)(i) & 0xc0000000) == 0xc0000000)
  249. #define IN_CLASSC_NET           0xffffff00
  250. #define IN_CLASSC_NSHIFT        8
  251. #define IN_CLASSC_HOST          0x000000ff
  252. #define INADDR_ANY              (u_long)0x00000000
  253. #define INADDR_LOOPBACK         0x7f000001
  254. #define INADDR_BROADCAST        (u_long)0xffffffff    
  255. #define INADDR_NONE             0xffffffff
  256. /*
  257.  * Socket address, internet style.
  258.  */
  259. struct sockaddr_in {
  260.         short   sin_family;
  261.         u_short sin_port;
  262.         struct  in_addr sin_addr;
  263.         char    sin_zero[8];
  264. };
  265. #define WSADESCRIPTION_LEN      256
  266. #define WSASYS_STATUS_LEN       128
  267. typedef struct WSAData {
  268.         WORD                    wVersion;
  269.         WORD                    wHighVersion;
  270.         char                    szDescription[WSADESCRIPTION_LEN+1];
  271.         char                    szSystemStatus[WSASYS_STATUS_LEN+1];
  272.         long                    iMaxSockets;
  273.         long                    iMaxUdpDg;
  274.         char FAR *              lpVendorInfo;
  275. } WSADATA;
  276. typedef WSADATA FAR *LPWSADATA;
  277. /*
  278.  * Options for use with [gs]etsockopt at the IP level.
  279.  */
  280. #define IP_OPTIONS      1               /* set/get IP per-packet options */
  281. /*
  282.  * Definitions related to sockets: types, address families, options,
  283.  * taken from the BSD file sys/socket.h.
  284.  */
  285. /*
  286.  * This is used instead of -1, since the
  287.  * SOCKET type is unsigned.
  288.  */
  289. #define INVALID_SOCKET  (SOCKET)(~0)
  290. #define SOCKET_ERROR            (-1)
  291. /*
  292.  * Types
  293.  */
  294. #define SOCK_STREAM     1               /* stream socket */
  295. #define SOCK_DGRAM      2               /* datagram socket */
  296. #define SOCK_RAW        3               /* raw-protocol interface */
  297. #define SOCK_RDM        4               /* reliably-delivered message */
  298. #define SOCK_SEQPACKET  5               /* sequenced packet stream */
  299. /*
  300.  * Option flags per-socket.
  301.  */
  302. #define SO_DEBUG        0x0001          /* turn on debugging info recording */
  303. #define SO_ACCEPTCONN   0x0002          /* socket has had listen() */
  304. #define SO_REUSEADDR    0x0004          /* allow local address reuse */
  305. #define SO_KEEPALIVE    0x0008          /* keep connections alive */
  306. #define SO_DONTROUTE    0x0010          /* just use interface addresses */
  307. #define SO_BROADCAST    0x0020          /* permit sending of broadcast msgs */
  308. #define SO_USELOOPBACK  0x0040          /* bypass hardware when possible */
  309. #define SO_LINGER       0x0080          /* linger on close if data present */
  310. #define SO_OOBINLINE    0x0100          /* leave received OOB data in line */
  311. #define SO_DONTLINGER   (u_int)(~SO_LINGER)
  312. /*
  313.  * Additional options.
  314.  */
  315. #define SO_SNDBUF       0x1001          /* send buffer size */
  316. #define SO_RCVBUF       0x1002          /* receive buffer size */
  317. #define SO_SNDLOWAT     0x1003          /* send low-water mark */
  318. #define SO_RCVLOWAT     0x1004          /* receive low-water mark */
  319. #define SO_SNDTIMEO     0x1005          /* send timeout */
  320. #define SO_RCVTIMEO     0x1006          /* receive timeout */
  321. #define SO_ERROR        0x1007          /* get error status and clear */
  322. #define SO_TYPE         0x1008          /* get socket type */
  323. /*
  324.  * Address families.
  325.  */
  326. #define AF_UNSPEC       0               /* unspecified */
  327. #define AF_UNIX         1               /* local to host (pipes, portals) */
  328. #define AF_INET         2               /* internetwork: UDP, TCP, etc. */
  329. #define AF_IMPLINK      3               /* arpanet imp addresses */
  330. #define AF_PUP          4               /* pup protocols: e.g. BSP */
  331. #define AF_CHAOS        5               /* mit CHAOS protocols */
  332. #define AF_NS           6               /* XEROX NS protocols */
  333. #define AF_NBS          7               /* nbs protocols */
  334. #define AF_ECMA         8               /* european computer manufacturers */
  335. #define AF_DATAKIT      9               /* datakit protocols */
  336. #define AF_CCITT        10              /* CCITT protocols, X.25 etc */
  337. #define AF_SNA          11              /* IBM SNA */
  338. #define AF_DECnet       12              /* DECnet */
  339. #define AF_DLI          13              /* Direct data link interface */
  340. #define AF_LAT          14              /* LAT */
  341. #define AF_HYLINK       15              /* NSC Hyperchannel */
  342. #define AF_APPLETALK    16              /* AppleTalk */
  343. #define AF_NETBIOS      17              /* NetBios-style addresses */
  344. #define AF_MAX          18
  345. /*
  346.  * Structure used by kernel to store most
  347.  * addresses.
  348.  */
  349. struct sockaddr {
  350.         u_short sa_family;              /* address family */
  351.         char    sa_data[14];            /* up to 14 bytes of direct address */
  352. };
  353. /*
  354.  * Structure used by kernel to pass protocol
  355.  * information in raw sockets.
  356.  */
  357. struct sockproto {
  358.         u_short sp_family;              /* address family */
  359.         u_short sp_protocol;            /* protocol */
  360. };
  361. /*
  362.  * Protocol families, same as address families for now.
  363.  */
  364. #define PF_UNSPEC       AF_UNSPEC
  365. #define PF_UNIX         AF_UNIX
  366. #define PF_INET         AF_INET
  367. #define PF_IMPLINK      AF_IMPLINK
  368. #define PF_PUP          AF_PUP
  369. #define PF_CHAOS        AF_CHAOS
  370. #define PF_NS           AF_NS
  371. #define PF_NBS          AF_NBS
  372. #define PF_ECMA         AF_ECMA
  373. #define PF_DATAKIT      AF_DATAKIT
  374. #define PF_CCITT        AF_CCITT
  375. #define PF_SNA          AF_SNA
  376. #define PF_DECnet       AF_DECnet
  377. #define PF_DLI          AF_DLI
  378. #define PF_LAT          AF_LAT
  379. #define PF_HYLINK       AF_HYLINK
  380. #define PF_APPLETALK    AF_APPLETALK
  381. #define PF_MAX          AF_MAX
  382. /*
  383.  * Structure used for manipulating linger option.
  384.  */
  385. struct  linger {
  386.         u_short l_onoff;                /* option on/off */
  387.         u_short l_linger;               /* linger time */
  388. };
  389. /*
  390.  * Level number for (get/set)sockopt() to apply to socket itself.
  391.  */
  392. #define SOL_SOCKET      0xffff          /* options for socket level */
  393. /*
  394.  * Maximum queue length specifiable by listen.
  395.  */
  396. #define SOMAXCONN       5
  397. #define MSG_OOB         0x1             /* process out-of-band data */
  398. #define MSG_PEEK        0x2             /* peek at incoming message */
  399. #define MSG_DONTROUTE   0x4             /* send without using routing tables */
  400. #define MSG_MAXIOVLEN   16
  401. /*
  402.  * Define constant based on rfc883, used by gethostbyxxxx() calls.
  403.  */
  404. #define MAXGETHOSTSTRUCT        1024
  405. /*
  406.  * Define flags to be used with the WSAAsyncSelect() call.
  407.  */
  408. #define FD_READ         0x01
  409. #define FD_WRITE        0x02
  410. #define FD_OOB          0x04
  411. #define FD_ACCEPT       0x08
  412. #define FD_CONNECT      0x10
  413. #define FD_CLOSE        0x20
  414. /*
  415.  * All Windows Sockets error constants are biased by WSABASEERR from
  416.  * the "normal"
  417.  */
  418. #define WSABASEERR              10000
  419. /*
  420.  * Windows Sockets definitions of regular Microsoft C error constants
  421.  */
  422. #define WSAEINTR                (WSABASEERR+4)
  423. #define WSAEBADF                (WSABASEERR+9)
  424. #define WSAEACCES               (WSABASEERR+13)
  425. #define WSAEFAULT               (WSABASEERR+14)
  426. #define WSAEINVAL               (WSABASEERR+22)
  427. #define WSAEMFILE               (WSABASEERR+24)
  428. /*
  429.  * Windows Sockets definitions of regular Berkeley error constants
  430.  */
  431. #define WSAEWOULDBLOCK          (WSABASEERR+35)
  432. #define WSAEINPROGRESS          (WSABASEERR+36)
  433. #define WSAEALREADY             (WSABASEERR+37)
  434. #define WSAENOTSOCK             (WSABASEERR+38)
  435. #define WSAEDESTADDRREQ         (WSABASEERR+39)
  436. #define WSAEMSGSIZE             (WSABASEERR+40)
  437. #define WSAEPROTOTYPE           (WSABASEERR+41)
  438. #define WSAENOPROTOOPT          (WSABASEERR+42)
  439. #define WSAEPROTONOSUPPORT      (WSABASEERR+43)
  440. #define WSAESOCKTNOSUPPORT      (WSABASEERR+44)
  441. #define WSAEOPNOTSUPP           (WSABASEERR+45)
  442. #define WSAEPFNOSUPPORT         (WSABASEERR+46)
  443. #define WSAEAFNOSUPPORT         (WSABASEERR+47)
  444. #define WSAEADDRINUSE           (WSABASEERR+48)
  445. #define WSAEADDRNOTAVAIL        (WSABASEERR+49)
  446. #define WSAENETDOWN             (WSABASEERR+50)
  447. #define WSAENETUNREACH          (WSABASEERR+51)
  448. #define WSAENETRESET            (WSABASEERR+52)
  449. #define WSAECONNABORTED         (WSABASEERR+53)
  450. #define WSAECONNRESET           (WSABASEERR+54)
  451. #define WSAENOBUFS              (WSABASEERR+55)
  452. #define WSAEISCONN              (WSABASEERR+56)
  453. #define WSAENOTCONN             (WSABASEERR+57)
  454. #define WSAESHUTDOWN            (WSABASEERR+58)
  455. #define WSAETOOMANYREFS         (WSABASEERR+59)
  456. #define WSAETIMEDOUT            (WSABASEERR+60)
  457. #define WSAECONNREFUSED         (WSABASEERR+61)
  458. #define WSAELOOP                (WSABASEERR+62)
  459. #define WSAENAMETOOLONG         (WSABASEERR+63)
  460. #define WSAEHOSTDOWN            (WSABASEERR+64)
  461. #define WSAEHOSTUNREACH         (WSABASEERR+65)
  462. #define WSAENOTEMPTY            (WSABASEERR+66)
  463. #define WSAEPROCLIM             (WSABASEERR+67)
  464. #define WSAEUSERS               (WSABASEERR+68)
  465. #define WSAEDQUOT               (WSABASEERR+69)
  466. #define WSAESTALE               (WSABASEERR+70)
  467. #define WSAEREMOTE              (WSABASEERR+71)
  468. /*
  469.  * Extended Windows Sockets error constant definitions
  470.  */
  471. #define WSASYSNOTREADY          (WSABASEERR+91)
  472. #define WSAVERNOTSUPPORTED      (WSABASEERR+92)
  473. #define WSANOTINITIALISED       (WSABASEERR+93)
  474. /*
  475.  * Error return codes from gethostbyname() and gethostbyaddr()
  476.  * (when using the resolver). Note that these errors are
  477.  * retrieved via WSAGetLastError() and must therefore follow
  478.  * the rules for avoiding clashes with error numbers from
  479.  * specific implementations or language run-time systems.
  480.  * For this reason the codes are based at WSABASEERR+1001.
  481.  * Note also that [WSA]NO_ADDRESS is defined only for
  482.  * compatibility purposes.
  483.  */
  484. #define h_errno         WSAGetLastError()
  485. /* Authoritative Answer: Host not found */
  486. #define WSAHOST_NOT_FOUND       (WSABASEERR+1001)
  487. #define HOST_NOT_FOUND          WSAHOST_NOT_FOUND
  488. /* Non-Authoritative: Host not found, or SERVERFAIL */
  489. #define WSATRY_AGAIN            (WSABASEERR+1002)
  490. #define TRY_AGAIN               WSATRY_AGAIN
  491. /* Non recoverable errors, FORMERR, REFUSED, NOTIMP */
  492. #define WSANO_RECOVERY          (WSABASEERR+1003)
  493. #define NO_RECOVERY             WSANO_RECOVERY
  494. /* Valid name, no data record of requested type */
  495. #define WSANO_DATA              (WSABASEERR+1004)
  496. #define NO_DATA                 WSANO_DATA
  497. /* no address, look for MX record */
  498. #define WSANO_ADDRESS           WSANO_DATA
  499. #define NO_ADDRESS              WSANO_ADDRESS
  500. /*
  501.  * Windows Sockets errors redefined as regular Berkeley error constants
  502.  */
  503. #define EWOULDBLOCK             WSAEWOULDBLOCK
  504. #define EINPROGRESS             WSAEINPROGRESS
  505. #define EALREADY                WSAEALREADY
  506. #define ENOTSOCK                WSAENOTSOCK
  507. #define EDESTADDRREQ            WSAEDESTADDRREQ
  508. #define EMSGSIZE                WSAEMSGSIZE
  509. #define EPROTOTYPE              WSAEPROTOTYPE
  510. #define ENOPROTOOPT             WSAENOPROTOOPT
  511. #define EPROTONOSUPPORT         WSAEPROTONOSUPPORT
  512. #define ESOCKTNOSUPPORT         WSAESOCKTNOSUPPORT
  513. #define EOPNOTSUPP              WSAEOPNOTSUPP
  514. #define EPFNOSUPPORT            WSAEPFNOSUPPORT
  515. #define EAFNOSUPPORT            WSAEAFNOSUPPORT
  516. #define EADDRINUSE              WSAEADDRINUSE
  517. #define EADDRNOTAVAIL           WSAEADDRNOTAVAIL
  518. #define ENETDOWN                WSAENETDOWN
  519. #define ENETUNREACH             WSAENETUNREACH
  520. #define ENETRESET               WSAENETRESET
  521. #define ECONNABORTED            WSAECONNABORTED
  522. #define ECONNRESET              WSAECONNRESET
  523. #define ENOBUFS                 WSAENOBUFS
  524. #define EISCONN                 WSAEISCONN
  525. #define ENOTCONN                WSAENOTCONN
  526. #define ESHUTDOWN               WSAESHUTDOWN
  527. #define ETOOMANYREFS            WSAETOOMANYREFS
  528. #define ETIMEDOUT               WSAETIMEDOUT
  529. #define ECONNREFUSED            WSAECONNREFUSED
  530. #define ELOOP                   WSAELOOP
  531. #define ENAMETOOLONG            WSAENAMETOOLONG
  532. #define EHOSTDOWN               WSAEHOSTDOWN
  533. #define EHOSTUNREACH            WSAEHOSTUNREACH
  534. #define ENOTEMPTY               WSAENOTEMPTY
  535. #define EPROCLIM                WSAEPROCLIM
  536. #define EUSERS                  WSAEUSERS
  537. #define EDQUOT                  WSAEDQUOT
  538. #define ESTALE                  WSAESTALE
  539. #define EREMOTE                 WSAEREMOTE
  540. /* Socket function prototypes */
  541. SOCKET PASCAL FAR accept (SOCKET s, struct sockaddr FAR *addr,
  542.                           int FAR *addrlen);
  543. int PASCAL FAR bind (SOCKET s, struct sockaddr FAR *addr, int namelen);
  544. int PASCAL FAR closesocket (SOCKET s);
  545. int PASCAL FAR connect (SOCKET s, struct sockaddr FAR *name, int namelen);
  546. int PASCAL FAR ioctlsocket (SOCKET s, long cmd, u_long FAR *argp);
  547. int PASCAL FAR getpeername (SOCKET s, struct sockaddr FAR *name,
  548.                             int FAR * namelen);
  549. int PASCAL FAR getsockname (SOCKET s, struct sockaddr FAR *name,
  550.                             int FAR * namelen);
  551. int PASCAL FAR getsockopt (SOCKET s, int level, int optname,
  552.                            char FAR * optval, int FAR *optlen);
  553. u_long PASCAL FAR htonl (u_long hostlong);
  554. u_short PASCAL FAR htons (u_short hostshort);
  555. unsigned long PASCAL FAR inet_addr (char FAR * cp);
  556. char FAR * PASCAL FAR inet_ntoa (struct in_addr in);
  557. int PASCAL FAR listen (SOCKET s, int backlog);
  558. u_long PASCAL FAR ntohl (u_long netlong);
  559. u_short PASCAL FAR ntohs (u_short netshort);
  560. int PASCAL FAR recv (SOCKET s, char FAR * buf, int len, int flags);
  561. int PASCAL FAR recvfrom (SOCKET s, char FAR * buf, int len, int flags,
  562.                          struct sockaddr FAR *from, int FAR * fromlen);
  563. int PASCAL FAR select (int nfds, fd_set FAR *readfds, fd_set FAR *writefds,
  564.                        fd_set FAR *exceptfds, struct timeval FAR *timeout);
  565. int PASCAL FAR send (SOCKET s, char FAR * buf, int len, int flags);
  566. int PASCAL FAR sendto (SOCKET s, char FAR * buf, int len, int flags,
  567.                        struct sockaddr FAR *to, int tolen);
  568. int PASCAL FAR setsockopt (SOCKET s, int level, int optname,
  569.                            char FAR * optval, int optlen);
  570. int PASCAL FAR shutdown (SOCKET s, int how);
  571. SOCKET PASCAL FAR socket (int af, int type, int protocol);
  572. /* Database function prototypes */
  573. struct hostent FAR * PASCAL FAR gethostbyaddr(char FAR * addr,
  574.                                               int len, int type);
  575. struct hostent FAR * PASCAL FAR gethostbyname(char FAR * name);
  576. int PASCAL FAR gethostname (char FAR * name, int namelen);
  577. struct servent FAR * PASCAL FAR getservbyport(int port, char FAR * proto);
  578. struct servent FAR * PASCAL FAR getservbyname(char FAR * name,
  579.                                               char FAR * proto);
  580. struct protoent FAR * PASCAL FAR getprotobynumber(int proto);
  581. struct protoent FAR * PASCAL FAR getprotobyname(char FAR * name);
  582. /* Microsoft Windows Extension function prototypes */
  583. int PASCAL FAR WSAStartup(WORD wVersionRequired, LPWSADATA lpWSAData);
  584. int PASCAL FAR WSACleanup(void);
  585. void PASCAL FAR WSASetLastError(int iError);
  586. int PASCAL FAR WSAGetLastError(void);
  587. BOOL PASCAL FAR WSAIsBlocking(void);
  588. int PASCAL FAR WSAUnhookBlockingHook(void);
  589. FARPROC PASCAL FAR WSASetBlockingHook(FARPROC lpBlockFunc);
  590. int PASCAL FAR WSACancelBlockingCall(void);
  591. HANDLE PASCAL FAR WSAAsyncGetServByName(HWND hWnd, u_int wMsg,
  592.                                         char FAR * name, char FAR * proto,
  593.                                         char FAR * buf, int buflen);
  594. HANDLE PASCAL FAR WSAAsyncGetServByPort(HWND hWnd, u_int wMsg, int port,
  595.                                         char FAR * proto, char FAR * buf,
  596.                                         int buflen);
  597. HANDLE PASCAL FAR WSAAsyncGetProtoByName(HWND hWnd, u_int wMsg,
  598.                                          char FAR * name, char FAR * buf,
  599.                                          int buflen);
  600. HANDLE PASCAL FAR WSAAsyncGetProtoByNumber(HWND hWnd, u_int wMsg,
  601.                                            int number, char FAR * buf,
  602.                                            int buflen);
  603. HANDLE PASCAL FAR WSAAsyncGetHostByName(HWND hWnd, u_int wMsg,
  604.                                         char FAR * name, char FAR * buf,
  605.                                         int buflen);
  606. HANDLE PASCAL FAR WSAAsyncGetHostByAddr(HWND hWnd, u_int wMsg,
  607.                                         char FAR * addr, int len, int type,
  608.                                         char FAR * buf, int buflen);
  609. int PASCAL FAR WSACancelAsyncRequest(HANDLE hAsyncTaskHandle);
  610. int PASCAL FAR WSAAsyncSelect(SOCKET s, HWND hWnd, u_int wMsg,
  611.                                long lEvent);
  612. /* Microsoft Windows Extended data types */
  613. typedef struct sockaddr SOCKADDR;
  614. typedef struct sockaddr *PSOCKADDR;
  615. typedef struct sockaddr FAR *LPSOCKADDR;
  616. typedef struct sockaddr_in SOCKADDR_IN;
  617. typedef struct sockaddr_in *PSOCKADDR_IN;
  618. typedef struct sockaddr_in FAR *LPSOCKADDR_IN;
  619. typedef struct linger LINGER;
  620. typedef struct linger *PLINGER;
  621. typedef struct linger FAR *LPLINGER;
  622. typedef struct in_addr IN_ADDR;
  623. typedef struct in_addr *PIN_ADDR;
  624. typedef struct in_addr FAR *LPIN_ADDR;
  625. typedef struct fd_set FD_SET;
  626. typedef struct fd_set *PFD_SET;
  627. typedef struct fd_set FAR *LPFD_SET;
  628. typedef struct hostent HOSTENT;
  629. typedef struct hostent *PHOSTENT;
  630. typedef struct hostent FAR *LPHOSTENT;
  631. typedef struct servent SERVENT;
  632. typedef struct servent *PSERVENT;
  633. typedef struct servent FAR *LPSERVENT;
  634. typedef struct protoent PROTOENT;
  635. typedef struct protoent *PPROTOENT;
  636. typedef struct protoent FAR *LPPROTOENT;
  637. typedef struct timeval TIMEVAL;
  638. typedef struct timeval *PTIMEVAL;
  639. typedef struct timeval FAR *LPTIMEVAL;
  640. /*
  641.  * Windows message parameter composition and decomposition
  642.  * macros.
  643.  *
  644.  * WSAMAKEASYNCREPLY is intended for use by the Windows Sockets implementation
  645.  * when constructing the response to a WSAAsyncGetXByY() routine.
  646.  */
  647. #define WSAMAKEASYNCREPLY(buflen,error)     MAKELONG(buflen,error)
  648. /*
  649.  * WSAMAKESELECTREPLY is intended for use by the Windows Sockets implementation
  650.  * when constructing the response to WSAAsyncSelect().
  651.  */
  652. #define WSAMAKESELECTREPLY(event,error)     MAKELONG(event,error)
  653. /*
  654.  * WSAGETASYNCBUFLEN is intended for use by the Windows Sockets application
  655.  * to extract the buffer length from the lParam in the response
  656.  * to a WSAGetXByY().
  657.  */
  658. #define WSAGETASYNCBUFLEN(lParam)           LOWORD(lParam)
  659. /*
  660.  * WSAGETASYNCERROR is intended for use by the Windows Sockets application
  661.  * to extract the error code from the lParam in the response
  662.  * to a WSAGetXByY().
  663.  */
  664. #define WSAGETASYNCERROR(lParam)            HIWORD(lParam)
  665. /*
  666.  * WSAGETSELECTEVENT is intended for use by the Windows Sockets application
  667.  * to extract the event code from the lParam in the response
  668.  * to a WSAAsyncSelect().
  669.  */
  670. #define WSAGETSELECTEVENT(lParam)           LOWORD(lParam)
  671. /*
  672.  * WSAGETSELECTERROR is intended for use by the Windows Sockets application
  673.  * to extract the error code from the lParam in the response
  674.  * to a WSAAsyncSelect().
  675.  */
  676. #define WSAGETSELECTERROR(lParam)           HIWORD(lParam)
  677. #endif  /* _WINSOCKAPI_ */