VirtualBox

source: vbox/trunk/src/libs/openssl-3.3.2/include/internal/sockets.h@ 108279

Last change on this file since 108279 was 108279, checked in by vboxsync, 4 weeks ago

openssl-3.3.2: Do not include poll.h on OS/2 ​​bugref:10757

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.9 KB
Line 
1/*
2 * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10#ifndef OSSL_INTERNAL_SOCKETS_H
11# define OSSL_INTERNAL_SOCKETS_H
12# pragma once
13
14# include <openssl/opensslconf.h>
15
16# if defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI)
17# define NO_SYS_PARAM_H
18# endif
19# ifdef WIN32
20# define NO_SYS_UN_H
21# endif
22# ifdef OPENSSL_SYS_VMS
23# define NO_SYS_PARAM_H
24# define NO_SYS_UN_H
25# endif
26
27# ifdef OPENSSL_NO_SOCK
28
29# elif defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS)
30# if defined(__DJGPP__)
31# define WATT32
32# define WATT32_NO_OLDIES
33# include <sys/socket.h>
34# include <sys/un.h>
35# include <tcp.h>
36# include <netdb.h>
37# include <arpa/inet.h>
38# include <netinet/tcp.h>
39# elif defined(_WIN32_WCE) && _WIN32_WCE<410
40# define getservbyname _masked_declaration_getservbyname
41# endif
42# if !defined(IPPROTO_IP)
43 /* winsock[2].h was included already? */
44# include <winsock.h>
45# endif
46# ifdef getservbyname
47 /* this is used to be wcecompat/include/winsock_extras.h */
48# undef getservbyname
49struct servent *PASCAL getservbyname(const char *, const char *);
50# endif
51
52# ifdef _WIN64
53/*
54 * Even though sizeof(SOCKET) is 8, it's safe to cast it to int, because
55 * the value constitutes an index in per-process table of limited size
56 * and not a real pointer. And we also depend on fact that all processors
57 * Windows run on happen to be two's-complement, which allows to
58 * interchange INVALID_SOCKET and -1.
59 */
60# define socket(d,t,p) ((int)socket(d,t,p))
61# define accept(s,f,l) ((int)accept(s,f,l))
62# endif
63
64/* Windows have other names for shutdown() reasons */
65# ifndef SHUT_RD
66# define SHUT_RD SD_RECEIVE
67# endif
68# ifndef SHUT_WR
69# define SHUT_WR SD_SEND
70# endif
71# ifndef SHUT_RDWR
72# define SHUT_RDWR SD_BOTH
73# endif
74
75# else
76# if defined(__APPLE__)
77 /*
78 * This must be defined before including <netinet/in6.h> to get
79 * IPV6_RECVPKTINFO
80 */
81# define __APPLE_USE_RFC_3542
82# endif
83
84# ifndef NO_SYS_PARAM_H
85# include <sys/param.h>
86# endif
87# ifdef OPENSSL_SYS_VXWORKS
88# include <time.h>
89# endif
90
91# include <netdb.h>
92# if defined(OPENSSL_SYS_VMS)
93typedef size_t socklen_t; /* Currently appears to be missing on VMS */
94# endif
95# if defined(OPENSSL_SYS_VMS_NODECC)
96# include <socket.h>
97# include <in.h>
98# include <inet.h>
99# else
100# include <sys/socket.h>
101# if !defined(NO_SYS_UN_H) && defined(AF_UNIX) && !defined(OPENSSL_NO_UNIX_SOCK)
102# include <sys/un.h>
103# ifndef UNIX_PATH_MAX
104# define UNIX_PATH_MAX sizeof(((struct sockaddr_un *)NULL)->sun_path)
105# endif
106# endif
107# ifdef FILIO_H
108# include <sys/filio.h> /* FIONBIO in some SVR4, e.g. unixware, solaris */
109# endif
110# include <netinet/in.h>
111# include <arpa/inet.h>
112# include <netinet/tcp.h>
113# endif
114
115# ifdef OPENSSL_SYS_AIX
116# include <sys/select.h>
117# endif
118
119# ifdef OPENSSL_SYS_UNIX
120# ifndef OPENSSL_SYS_TANDEM
121#ifndef RT_OS_OS2 /* VBOX */
122# include <poll.h>
123#endif /* VBOX */
124# endif
125# include <errno.h>
126# endif
127
128# ifndef VMS
129# include <sys/ioctl.h>
130# else
131# if !defined(TCPIP_TYPE_SOCKETSHR) && defined(__VMS_VER) && (__VMS_VER > 70000000)
132 /* ioctl is only in VMS > 7.0 and when socketshr is not used */
133# include <sys/ioctl.h>
134# endif
135# include <unixio.h>
136# if defined(TCPIP_TYPE_SOCKETSHR)
137# include <socketshr.h>
138# endif
139# endif
140
141# ifndef INVALID_SOCKET
142# define INVALID_SOCKET (-1)
143# endif
144# endif
145
146/*
147 * Some IPv6 implementations are broken, you can disable them in known
148 * bad versions.
149 */
150# if !defined(OPENSSL_USE_IPV6)
151# if defined(AF_INET6)
152# define OPENSSL_USE_IPV6 1
153# else
154# define OPENSSL_USE_IPV6 0
155# endif
156# endif
157
158/*
159 * Some platforms define AF_UNIX, but don't support it
160 */
161# if !defined(OPENSSL_NO_UNIX_SOCK)
162# if !defined(AF_UNIX) || defined(NO_SYS_UN_H)
163# define OPENSSL_NO_UNIX_SOCK
164# endif
165# endif
166
167# define get_last_socket_error() errno
168# define clear_socket_error() errno=0
169# define get_last_socket_error_is_eintr() (get_last_socket_error() == EINTR)
170
171# if defined(OPENSSL_SYS_WINDOWS)
172# undef get_last_socket_error
173# undef clear_socket_error
174# undef get_last_socket_error_is_eintr
175# define get_last_socket_error() WSAGetLastError()
176# define clear_socket_error() WSASetLastError(0)
177# define get_last_socket_error_is_eintr() (get_last_socket_error() == WSAEINTR)
178# define readsocket(s,b,n) recv((s),(b),(n),0)
179# define writesocket(s,b,n) send((s),(b),(n),0)
180# elif defined(__DJGPP__)
181# define closesocket(s) close_s(s)
182# define readsocket(s,b,n) read_s(s,b,n)
183# define writesocket(s,b,n) send(s,b,n,0)
184# elif defined(OPENSSL_SYS_VMS)
185# define ioctlsocket(a,b,c) ioctl(a,b,c)
186# define closesocket(s) close(s)
187# define readsocket(s,b,n) recv((s),(b),(n),0)
188# define writesocket(s,b,n) send((s),(b),(n),0)
189# elif defined(OPENSSL_SYS_VXWORKS)
190# define ioctlsocket(a,b,c) ioctl((a),(b),(int)(c))
191# define closesocket(s) close(s)
192# define readsocket(s,b,n) read((s),(b),(n))
193# define writesocket(s,b,n) write((s),(char *)(b),(n))
194# elif defined(OPENSSL_SYS_TANDEM)
195# define readsocket(s,b,n) read((s),(b),(n))
196# define writesocket(s,b,n) write((s),(b),(n))
197# define ioctlsocket(a,b,c) ioctl(a,b,c)
198# define closesocket(s) close(s)
199# else
200# define ioctlsocket(a,b,c) ioctl(a,b,c)
201# define closesocket(s) close(s)
202# define readsocket(s,b,n) read((s),(b),(n))
203# define writesocket(s,b,n) write((s),(b),(n))
204# endif
205
206/* also in apps/include/apps.h */
207# if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_WINCE)
208# define openssl_fdset(a, b) FD_SET((unsigned int)(a), b)
209# else
210# define openssl_fdset(a, b) FD_SET(a, b)
211# endif
212
213#endif
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette