1 #ifndef _system_network_h
2 #define _system_network_h
4 Unix SMB/CIFS implementation.
6 networking system include wrappers
8 Copyright (C) Andrew Tridgell 2004
9 Copyright (C) Jelmer Vernooij 2007
11 ** NOTE! The following LGPL license applies to the replace
12 ** library. This does NOT imply that all of Samba is released
15 This library is free software; you can redistribute it and/or
16 modify it under the terms of the GNU Lesser General Public
17 License as published by the Free Software Foundation; either
18 version 3 of the License, or (at your option) any later version.
20 This library is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 Lesser General Public License for more details.
25 You should have received a copy of the GNU Lesser General Public
26 License along with this library; if not, see <http://www.gnu.org/licenses/>.
30 #ifdef HAVE_SYS_SOCKET_H
31 #include <sys/socket.h>
34 #ifdef HAVE_UNIXSOCKET
38 #ifdef HAVE_NETINET_IN_H
39 #include <netinet/in.h>
41 #ifdef HAVE_ARPA_INET_H
42 #include <arpa/inet.h>
49 #ifdef HAVE_NETINET_TCP_H
50 #include <netinet/tcp.h>
54 * The next three defines are needed to access the IPTOS_* options
58 #ifdef HAVE_NETINET_IN_SYSTM_H
59 #include <netinet/in_systm.h>
62 #ifdef HAVE_NETINET_IN_IP_H
63 #include <netinet/in_ip.h>
66 #ifdef HAVE_NETINET_IP_H
67 #include <netinet/ip.h>
78 #ifdef HAVE_SYS_IOCTL_H
79 #include <sys/ioctl.h>
82 #ifdef REPLACE_INET_NTOA
83 /* define is in "replace.h" */
84 char *rep_inet_ntoa(struct in_addr ip
);
87 #ifndef HAVE_INET_PTON
88 /* define is in "replace.h" */
89 int rep_inet_pton(int af
, const char *src
, void *dst
);
92 #ifndef HAVE_INET_NTOP
93 /* define is in "replace.h" */
94 const char *rep_inet_ntop(int af
, const void *src
, char *dst
, socklen_t size
);
101 #ifndef HAVE_STRUCT_IFADDRS
103 struct ifaddrs
*ifa_next
; /* Pointer to next struct */
104 char *ifa_name
; /* Interface name */
105 unsigned int ifa_flags
; /* Interface flags */
106 struct sockaddr
*ifa_addr
; /* Interface address */
107 struct sockaddr
*ifa_netmask
; /* Interface netmask */
109 struct sockaddr
*ifa_dstaddr
; /* P2P interface destination */
110 void *ifa_data
; /* Address specific data */
114 #ifndef HAVE_GETIFADDRS
115 int rep_getifaddrs(struct ifaddrs
**);
118 #ifndef HAVE_FREEIFADDRS
119 int rep_freeifaddrs(struct ifaddrs
**);
123 * Some systems have getaddrinfo but not the
124 * defines needed to use it.
127 /* Various macros that ought to be in <netdb.h>, but might not be */
130 #define EAI_BADFLAGS (-1)
131 #define EAI_NONAME (-2)
132 #define EAI_AGAIN (-3)
133 #define EAI_FAIL (-4)
134 #define EAI_FAMILY (-6)
135 #define EAI_SOCKTYPE (-7)
136 #define EAI_SERVICE (-8)
137 #define EAI_MEMORY (-10)
138 #define EAI_SYSTEM (-11)
139 #endif /* !EAI_FAIL */
142 #define AI_PASSIVE 0x0001
146 #define AI_CANONNAME 0x0002
149 #ifndef AI_NUMERICHOST
151 * some platforms don't support AI_NUMERICHOST; define as zero if using
152 * the system version of getaddrinfo...
154 #if defined(HAVE_STRUCT_ADDRINFO) && defined(HAVE_GETADDRINFO)
155 #define AI_NUMERICHOST 0
157 #define AI_NUMERICHOST 0x0004
161 #ifndef AI_ADDRCONFIG
162 #define AI_ADDRCONFIG 0x0020
165 #ifndef AI_NUMERICSERV
167 * logic copied from AI_NUMERICHOST
169 #if defined(HAVE_STRUCT_ADDRINFO) && defined(HAVE_GETADDRINFO)
170 #define AI_NUMERICSERV 0
172 #define AI_NUMERICSERV 0x0400
176 #ifndef NI_NUMERICHOST
177 #define NI_NUMERICHOST 1
180 #ifndef NI_NUMERICSERV
181 #define NI_NUMERICSERV 2
189 #define NI_NAMEREQD 8
198 #define NI_MAXHOST 1025
202 #define NI_MAXSERV 32
206 * glibc on linux doesn't seem to have MSG_WAITALL
207 * defined. I think the kernel has it though..
210 #define MSG_WAITALL 0
213 #ifndef INADDR_LOOPBACK
214 #define INADDR_LOOPBACK 0x7f000001
218 #define INADDR_NONE 0xffffffff
222 #define EAFNOSUPPORT EINVAL
225 #ifndef INET_ADDRSTRLEN
226 #define INET_ADDRSTRLEN 16
229 #ifndef INET6_ADDRSTRLEN
230 #define INET6_ADDRSTRLEN 46
233 #ifndef HOST_NAME_MAX
234 #define HOST_NAME_MAX 256
237 #ifndef HAVE_SOCKLEN_T
238 #define HAVE_SOCKLEN_T
239 typedef int socklen_t
;
242 #ifndef HAVE_SA_FAMILY_T
243 #define HAVE_SA_FAMILY_T
244 typedef unsigned short int sa_family_t
;
247 #ifndef HAVE_STRUCT_SOCKADDR_STORAGE
248 #define HAVE_STRUCT_SOCKADDR_STORAGE
249 #ifdef HAVE_STRUCT_SOCKADDR_IN6
250 #define sockaddr_storage sockaddr_in6
251 #define ss_family sin6_family
253 #define sockaddr_storage sockaddr_in
254 #define ss_family sin_family
258 #ifndef HAVE_STRUCT_ADDRINFO
259 #define HAVE_STRUCT_ADDRINFO
265 socklen_t ai_addrlen
;
266 struct sockaddr
*ai_addr
;
268 struct addrinfo
*ai_next
;
270 #endif /* HAVE_STRUCT_ADDRINFO */
272 #if !defined(HAVE_GETADDRINFO)
273 #include "getaddrinfo.h"
276 /* Needed for some systems that don't define it (Solaris). */
278 #define ifr_netmask ifr_addrs
281 #ifdef SOCKET_WRAPPER
282 #ifndef SOCKET_WRAPPER_NOT_REPLACE
283 #define SOCKET_WRAPPER_REPLACE
285 #include "lib/socket_wrapper/socket_wrapper.h"