home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 May / PCW596.iso / wtest / clico / sunsoft / pcnfs51 / winsock / include / winsock.h < prev   
C/C++ Source or Header  |  1994-08-26  |  29KB  |  829 lines

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