]> git.sur5r.net Git - openldap/blob - include/ac/socket.h
Import latest from devel
[openldap] / include / ac / socket.h
1 /* Generic socket.h */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted only
8  * as authorized by the OpenLDAP Public License.  A copy of this
9  * license is available at http://www.OpenLDAP.org/license.html or
10  * in file LICENSE in the top-level directory of the distribution.
11  */
12
13 #ifndef _AC_SOCKET_H_
14 #define _AC_SOCKET_H_
15
16 #ifdef HAVE_SYS_TYPES_H
17 #include <sys/types.h>
18 #endif
19
20 #ifdef HAVE_SYS_SOCKET_H
21 #include <sys/socket.h>
22
23 #ifdef HAVE_SYS_UN_H
24 #include <sys/un.h>
25 #endif
26
27 #ifdef HAVE_SYS_SELECT_H
28 #include <sys/select.h>
29 #endif
30
31 #include <netinet/in.h>
32
33 #ifdef HAVE_NETINET_TCP_H
34 #include <netinet/tcp.h>
35 #endif
36
37 #ifdef HAVE_ARPA_INET_H
38 #include <arpa/inet.h>
39 #endif
40
41 #ifdef HAVE_ARPA_NAMESER_H
42 #include <arpa/nameser.h>
43 #endif
44
45 #include <netdb.h>
46
47 #ifdef HAVE_RESOLV_H
48 #include <resolv.h>
49 #endif
50
51 #endif /* HAVE_SYS_SOCKET_H */
52
53 #ifdef HAVE_WINSOCK2
54 #include <winsock2.h>
55 #elif HAVE_WINSOCK
56 #include <winsock.h>
57 #else
58 #define WSACleanup()
59 #endif
60
61 #ifdef HAVE_PCNFS
62 #include <tklib.h>
63 #endif /* HAVE_PCNFS */
64
65 #ifndef INADDR_LOOPBACK
66 #define INADDR_LOOPBACK (0x7f000001UL)
67 #endif
68
69 #ifndef MAXHOSTNAMELEN
70 #define MAXHOSTNAMELEN  64
71 #endif
72
73 #undef  sock_errno
74 #undef  sock_errstr
75 #define sock_errno()    errno
76 #define sock_errstr(e)  STRERROR(e)
77
78 #ifdef HAVE_WINSOCK
79 #       define tcp_close( s )           closesocket( s )
80 #       define tcp_read( s, buf, len )  recv( s, buf, len, 0 )
81 #       define tcp_write( s, buf, len ) send( s, buf, len, 0 )
82 #       define ioctl( s, c, a )         ioctlsocket( (s), (c), (a) )
83 #       define ioctl_t                          u_long
84 #       define AC_SOCKET_INVALID        ((unsigned int) ~0)
85
86 #       if SD_BOTH
87 #               define tcp_close( s )   (shutdown( s, SD_BOTH ), closesocket( s ))
88 #else
89 #               define tcp_close( s )           closesocket( s )
90 #endif
91
92 #define EWOULDBLOCK WSAEWOULDBLOCK
93 #define EINPROGRESS WSAEINPROGRESS
94 #define ETIMEDOUT       WSAETIMEDOUT
95
96 #undef  sock_errno
97 #undef  sock_errstr
98 #define sock_errno()    WSAGetLastError()
99 #define sock_errstr(e)  ber_pvt_wsa_err2string(e)
100
101 LBER_F( char * ) ber_pvt_wsa_err2string LDAP_P((int));
102
103 #elif MACOS
104 #       define tcp_close( s )           tcpclose( s )
105 #       define tcp_read( s, buf, len )  tcpread( s, buf, len )
106 #       define tcp_write( s, buf, len ) tcpwrite( s, buf, len )
107
108 #elif DOS
109 #       ifdef PCNFS
110 #               define tcp_close( s )   close( s )
111 #               define tcp_read( s, buf, len )  recv( s, buf, len, 0 )
112 #               define tcp_write( s, buf, len ) send( s, buf, len, 0 )
113 #       endif /* PCNFS */
114 #       ifdef NCSA
115 #               define tcp_close( s )   do { netclose( s ); netshut() } while(0)
116 #               define tcp_read( s, buf, len )  nread( s, buf, len )
117 #               define tcp_write( s, buf, len ) netwrite( s, buf, len )
118 #       endif /* NCSA */
119
120 #elif HAVE_CLOSESOCKET
121 #       define tcp_close( s )           closesocket( s )
122
123 #       ifdef __BEOS__
124 #               define tcp_read( s, buf, len )  recv( s, buf, len, 0 )
125 #               define tcp_write( s, buf, len ) send( s, buf, len, 0 )
126 #       endif
127
128 #else
129 #       define tcp_read( s, buf, len)   read( s, buf, len )
130 #       define tcp_write( s, buf, len)  write( s, buf, len )
131
132 #       if SHUT_RDWR
133 #               define tcp_close( s )   (shutdown( s, SHUT_RDWR ), close( s ))
134 #else
135 #               define tcp_close( s )           close( s )
136 #endif
137
138 #ifdef HAVE_PIPE
139 /*
140  * Only use pipe() on systems where file and socket descriptors 
141  * are interchangable
142  */
143 #define USE_PIPE HAVE_PIPE
144 #endif
145
146 #endif /* MACOS */
147
148 #ifndef ioctl_t
149 #       define ioctl_t                          int
150 #endif
151
152 #ifndef AC_SOCKET_INVALID
153 #       define AC_SOCKET_INVALID        (-1)
154 #endif
155 #ifndef AC_SOCKET_ERROR
156 #       define AC_SOCKET_ERROR          (-1)
157 #endif
158
159 #if !defined( HAVE_INET_ATON ) && !defined( inet_aton )
160 #define inet_aton ldap_pvt_inet_aton
161 struct in_addr;
162 LDAP_F (int) ldap_pvt_inet_aton LDAP_P(( const char *, struct in_addr * ));
163 #endif
164
165 #if     defined(__WIN32) && defined(_ALPHA)
166 /* NT on Alpha is hosed. */
167 #       define AC_HTONL( l ) \
168         ((((l)&0xffU)<<24) + (((l)&0xff00U)<<8) + \
169          (((l)&0xff0000U)>>8) + (((l)&0xff000000U)>>24))
170 #       define AC_NTOHL(l) AC_HTONL(l)
171
172 #else
173 #       define AC_HTONL( l ) htonl( l )
174 #       define AC_NTOHL( l ) ntohl( l )
175 #endif
176
177 /* htons()/ntohs() may be broken much like htonl()/ntohl() */
178 #define AC_HTONS( s ) htons( s )
179 #define AC_NTOHS( s ) ntohs( s )
180
181 #ifdef LDAP_PF_LOCAL
182 #  if !defined( AF_LOCAL ) && defined( AF_UNIX )
183 #    define AF_LOCAL    AF_UNIX
184 #  endif
185 #  if !defined( PF_LOCAL ) && defined( PF_UNIX )
186 #    define PF_LOCAL    PF_UNIX
187 #  endif
188 #endif
189
190 #endif /* _AC_SOCKET_H_ */