]> git.sur5r.net Git - openldap/blob - include/ac/socket.h
Minor fixes to complete backout of initialization/startup changes.
[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 #include <arpa/inet.h>
30 #include <arpa/nameser.h>
31 #include <netdb.h>
32 #include <resolv.h>
33 #endif
34
35 #ifdef HAVE_WINSOCK2
36 #include <winsock2.h>
37 #elif HAVE_WINSOCK
38 #include <winsock.h>
39 #else
40 #define WSACleanup()
41 #endif
42
43 #ifdef HAVE_PCNFS
44 #include <tklib.h>
45 #endif /* HAVE_PCNFS */
46
47 #ifndef INADDR_LOOPBACK
48 #define INADDR_LOOPBACK ((unsigned long) 0x7f000001)
49 #endif
50
51 #ifndef MAXHOSTNAMELEN
52 #define MAXHOSTNAMELEN  64
53 #endif
54
55 #ifdef MACOS
56 #define tcp_close( s )          tcpclose( s )
57 #else /* MACOS */
58 #ifdef DOS
59 #ifdef PCNFS
60 #define tcp_close( s )          close( s )
61 #endif /* PCNFS */
62 #ifdef NCSA
63 #define tcp_close( s )          netclose( s ); netshut()
64 #endif /* NCSA */
65 #ifdef WINSOCK
66 #define tcp_close( s )          closesocket( s );
67 #endif /* WINSOCK */
68 #else /* DOS */
69 #define tcp_close( s )          close( s )
70 #endif /* DOS */
71 #endif /* MACOS */
72
73 #if !defined(__alpha) || defined(VMS)
74 #define AC_HTONL( l ) htonl( l )
75 #define AC_NTOHL( l ) ntohl( l )
76 #else /* __alpha && !VMS */
77 /*
78  * htonl and ntohl on the DEC Alpha under OSF 1 seem to only swap the
79  * lower-order 32-bits of a (64-bit) long, so we define correct versions
80  * here.
81  */ 
82 #define AC_HTONL( l )   (((long)htonl( (l) & 0x00000000FFFFFFFF )) << 32 \
83         | htonl( ( (l) & 0xFFFFFFFF00000000 ) >> 32 ))
84
85 #define AC_NTOHL( l ) (((long)ntohl( (l) & 0x00000000FFFFFFFF )) << 32 \
86         | ntohl( ( (l) & 0xFFFFFFFF00000000 ) >> 32 ))
87
88 #endif /* __alpha && !VMS */
89
90 #endif /* _AC_SOCKET_H_ */