]> git.sur5r.net Git - openldap/blob - include/ac/socket.h
Merge in all -devel changes made since branch was created.
[openldap] / include / ac / socket.h
1 /*
2  * Generic socket.h
3  */
4 /*
5  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms are permitted only
9  * as authorized by the OpenLDAP Public License.  A copy of this
10  * license is available at http://www.OpenLDAP.org/license.html or
11  * in file LICENSE in the top-level directory of the distribution.
12  */
13
14 #ifndef _AC_SOCKET_H_
15 #define _AC_SOCKET_H_
16
17 #ifdef HAVE_SYS_TYPES_H
18 #include <sys/types.h>
19 #endif
20
21 #ifdef HAVE_SYS_SOCKET_H
22 #include <sys/socket.h>
23
24 #ifdef HAVE_SYS_SELECT_H
25 #include <sys/select.h>
26 #endif
27
28 #include <netinet/in.h>
29
30 #ifdef HAVE_NETINET_TCP_H
31 #include <netinet/tcp.h>
32 #endif
33
34 #ifdef HAVE_ARPA_INET_H
35 #include <arpa/inet.h>
36 #endif
37
38 #ifdef HAVE_ARPA_NAMESER_H
39 #include <arpa/nameser.h>
40 #endif
41
42 #include <netdb.h>
43
44 #ifdef HAVE_RESOLV_H
45 #include <resolv.h>
46 #endif
47
48 #endif /* HAVE_SYS_SOCKET_H */
49
50 #ifdef HAVE_WINSOCK2
51 #include <winsock2.h>
52 #elif HAVE_WINSOCK
53 #include <winsock.h>
54 #else
55 #define WSACleanup()
56 #endif
57
58 #ifdef HAVE_PCNFS
59 #include <tklib.h>
60 #endif /* HAVE_PCNFS */
61
62 #ifndef INADDR_LOOPBACK
63 #define INADDR_LOOPBACK (0x7f000001UL)
64 #endif
65
66 #ifndef MAXHOSTNAMELEN
67 #define MAXHOSTNAMELEN  64
68 #endif
69
70 #ifdef HAVE_WINSOCK
71 #       define tcp_close( s )           closesocket( s );
72 #       define ioctl( s, c, a )         ioctlsocket( (s), (c), (a) )
73 #       define ioctl_t                          u_long
74 #       define AC_SOCKET_INVALID        ((unsigned int) ~0)
75
76 #define EWOULDBLOCK WSAEWOULDBLOCK
77 #define EINPROGRESS WSAEINPROGRESS
78 #define ETIMEDOUT       WSAETIMEDOUT
79
80 #elif MACOS
81 #       define tcp_close( s )           tcpclose( s )
82
83 #elif DOS
84 #       ifdef PCNFS
85 #               define tcp_close( s )   close( s )
86 #       endif /* PCNFS */
87 #       ifdef NCSA
88 #               define tcp_close( s )   do { netclose( s ); netshut() } while(0)
89 #       endif /* NCSA */
90
91 #elif HAVE_CLOSESOCKET
92 #       define tcp_close( s )           closesocket( s )
93
94 #else
95 #       define tcp_close( s )           close( s )
96 #endif /* MACOS */
97
98 #ifndef ioctl_t
99 #       define ioctl_t                          int
100 #endif
101
102 #ifndef AC_SOCKET_INVALID
103 #       define AC_SOCKET_INVALID        (-1)
104 #endif
105
106 #if !defined( HAVE_INET_ATON ) && !defined( inet_aton )
107 #define inet_aton ldap_pvt_inet_aton
108 struct in_addr;
109 int ldap_pvt_inet_aton LDAP_P(( const char *, struct in_addr * ));
110 #endif
111
112 #if     defined(__WIN32) && defined(_ALPHA)
113 /* NT on Alpha is hosed. */
114 #define AC_HTONL( l ) \
115         ((((l)&0xff)<<24) + (((l)&0xff00)<<8) + \
116          (((l)&0xff0000)>>8) + (((l)&0xff000000)>>24))
117 #define AC_NTOHL(l) AC_HTONL(l)
118
119 #elif defined(__alpha) && !defined(VMS)
120 /*
121  * htonl and ntohl on the DEC Alpha under OSF 1 seem to only swap the
122  * lower-order 32-bits of a (64-bit) long, so we define correct versions
123  * here.
124  */ 
125 #define AC_HTONL( l )   (((long)htonl( (l) & 0x00000000FFFFFFFF )) << 32 \
126         | htonl( ( (l) & 0xFFFFFFFF00000000 ) >> 32 ))
127
128 #define AC_NTOHL( l ) (((long)ntohl( (l) & 0x00000000FFFFFFFF )) << 32 \
129         | ntohl( ( (l) & 0xFFFFFFFF00000000 ) >> 32 ))
130
131 #else
132 #define AC_HTONL( l ) htonl( l )
133 #define AC_NTOHL( l ) ntohl( l )
134 #endif
135
136 /* htons()/ntohs() may be broken much like htonl()/ntohl() */
137 #define AC_HTONS( s ) htons( s )
138 #define AC_NTOHS( s ) ntohs( s )
139
140
141 #endif /* _AC_SOCKET_H_ */