Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
PythonIniOS/Python-iOS/libPython/Modules/socketmodule.h at master · SuPair/PythonIniOS · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
SuPair
/
PythonIniOS
Public
forked from
koalahl/PythonIniOS
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
PythonIniOS
/
Python-iOS
/
libPython
/
Modules
/
socketmodule.h
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
executable file
·
250 lines (206 loc) · 6.66 KB
master
Breadcrumbs
PythonIniOS
/
Python-iOS
/
libPython
/
Modules
/
socketmodule.h
Copy path
Top
File metadata and controls
Code
Blame
executable file
·
250 lines (206 loc) · 6.66 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/* Socket module header file */
/* Includes needed for the sockaddr_* symbols below */
#ifndef
MS_WINDOWS
#ifdef
__VMS
# include
<socket.h>
# else
# include
<sys/socket.h>
# endif
# include
<netinet/in.h>
# if
!(defined(
__BEOS__
)
||
defined(
__CYGWIN__
)
||
(defined(
PYOS_OS2
)
&&
defined(
PYCC_VACPP
)))
# include
<netinet/tcp.h>
# endif
#else
/* MS_WINDOWS */
# include
<winsock2.h>
# include
<ws2tcpip.h>
/* VC6 is shipped with old platform headers, and does not have MSTcpIP.h
* Separate SDKs have all the functions we want, but older ones don't have
* any version information.
* I use SIO_GET_MULTICAST_FILTER to detect a decent SDK.
*/
# ifdef
SIO_GET_MULTICAST_FILTER
# include
<MSTcpIP.h>
/* for SIO_RCVALL */
# define
HAVE_ADDRINFO
# define
HAVE_SOCKADDR_STORAGE
# define
HAVE_GETADDRINFO
# define
HAVE_GETNAMEINFO
# define
ENABLE_IPV6
# else
typedef
int
socklen_t
;
# endif
/* IPPROTO_IPV6 */
#endif
/* MS_WINDOWS */
#ifdef
HAVE_SYS_UN_H
# include
<sys/un.h>
#else
# undef
AF_UNIX
#endif
#ifdef
HAVE_LINUX_NETLINK_H
# ifdef
HAVE_ASM_TYPES_H
# include
<asm/types.h>
# endif
# include
<linux/netlink.h>
#else
# undef
AF_NETLINK
#endif
#ifdef
HAVE_BLUETOOTH_BLUETOOTH_H
#include
<bluetooth/bluetooth.h>
#include
<bluetooth/rfcomm.h>
#include
<bluetooth/l2cap.h>
#include
<bluetooth/sco.h>
#include
<bluetooth/hci.h>
#endif
#ifdef
HAVE_BLUETOOTH_H
#include
<bluetooth.h>
#endif
#ifdef
HAVE_NETPACKET_PACKET_H
# include
<sys/ioctl.h>
# include
<net/if.h>
# include
<netpacket/packet.h>
#endif
#ifdef
HAVE_LINUX_TIPC_H
# include
<linux/tipc.h>
#endif
#ifndef
Py__SOCKET_H
#define
Py__SOCKET_H
#ifdef
__cplusplus
extern
"C"
{
#endif
/* Python module and C API name */
#define
PySocket_MODULE_NAME
"_socket"
#define
PySocket_CAPI_NAME
"CAPI"
#define
PySocket_CAPSULE_NAME
(PySocket_MODULE_NAME "." PySocket_CAPI_NAME)
/* Abstract the socket file descriptor type */
#ifdef
MS_WINDOWS
typedef
SOCKET
SOCKET_T
;
# ifdef
MS_WIN64
# define
SIZEOF_SOCKET_T
8
# else
# define
SIZEOF_SOCKET_T
4
# endif
#else
typedef
int
SOCKET_T
;
# define
SIZEOF_SOCKET_T
SIZEOF_INT
#endif
/* Socket address */
typedef
union
sock_addr
{
struct
sockaddr_in
in
;
#ifdef
AF_UNIX
struct
sockaddr_un
un
;
#endif
#ifdef
AF_NETLINK
struct
sockaddr_nl
nl
;
#endif
#ifdef
ENABLE_IPV6
struct
sockaddr_in6
in6
;
struct
sockaddr_storage
storage
;
#endif
#ifdef
HAVE_BLUETOOTH_BLUETOOTH_H
struct
sockaddr_l2
bt_l2
;
struct
sockaddr_rc
bt_rc
;
struct
sockaddr_sco
bt_sco
;
struct
sockaddr_hci
bt_hci
;
#endif
#ifdef
HAVE_NETPACKET_PACKET_H
struct
sockaddr_ll
ll
;
#endif
}
sock_addr_t
;
/* The object holding a socket. It holds some extra information,
like the address family, which is used to decode socket address
arguments properly. */
typedef
struct
{
PyObject_HEAD
SOCKET_T
sock_fd
;
/* Socket file descriptor */
int
sock_family
;
/* Address family, e.g., AF_INET */
int
sock_type
;
/* Socket type, e.g., SOCK_STREAM */
int
sock_proto
;
/* Protocol type, usually 0 */
PyObject
*
(
*
errorhandler
)(
void
);
/* Error handler; checks
errno, returns NULL and
sets a Python exception */
double
sock_timeout
;
/* Operation timeout in seconds;
0.0 means non-blocking */
}
PySocketSockObject
;
/* --- C API ----------------------------------------------------*/
/* Short explanation of what this C API export mechanism does
and how it works:
The _ssl module needs access to the type object defined in
the _socket module. Since cross-DLL linking introduces a lot of
problems on many platforms, the "trick" is to wrap the
C API of a module in a struct which then gets exported to
other modules via a PyCapsule.
The code in socketmodule.c defines this struct (which currently
only contains the type object reference, but could very
well also include other C APIs needed by other modules)
and exports it as PyCapsule via the module dictionary
under the name "CAPI".
Other modules can now include the socketmodule.h file
which defines the needed C APIs to import and set up
a static copy of this struct in the importing module.
After initialization, the importing module can then
access the C APIs from the _socket module by simply
referring to the static struct, e.g.
Load _socket module and its C API; this sets up the global
PySocketModule:
if (PySocketModule_ImportModuleAndAPI())
return;
Now use the C API as if it were defined in the using
module:
if (!PyArg_ParseTuple(args, "O!|zz:ssl",
PySocketModule.Sock_Type,
(PyObject*)&Sock,
&key_file, &cert_file))
return NULL;
Support could easily be extended to export more C APIs/symbols
this way. Currently, only the type object is exported,
other candidates would be socket constructors and socket
access functions.
*/
/* C API for usage by other Python modules */
typedef
struct
{
PyTypeObject
*
Sock_Type
;
PyObject
*
error
;
}
PySocketModule_APIObject
;
/* XXX The net effect of the following appears to be to define a function
XXX named PySocketModule_APIObject in _ssl.c. It's unclear why it isn't
XXX defined there directly.
>>> It's defined here because other modules might also want to use
>>> the C API.
*/
#ifndef
PySocket_BUILDING_SOCKET
/* --- C API ----------------------------------------------------*/
/* Interfacestructure to C API for other modules.
Call PySocketModule_ImportModuleAndAPI() to initialize this
structure. After that usage is simple:
if (!PyArg_ParseTuple(args, "O!|zz:ssl",
&PySocketModule.Sock_Type, (PyObject*)&Sock,
&key_file, &cert_file))
return NULL;
...
*/
static
PySocketModule_APIObject
PySocketModule
;
/* You *must* call this before using any of the functions in
PySocketModule and check its outcome; otherwise all accesses will
result in a segfault. Returns 0 on success. */
#ifndef
DPRINTF
# define
DPRINTF
if (0) printf
#endif
static
int
PySocketModule_ImportModuleAndAPI
(
void
)
{
void
*
api
;
DPRINTF
(
" Loading capsule %s\n"
,
PySocket_CAPSULE_NAME
);
api
=
PyCapsule_Import
(
PySocket_CAPSULE_NAME
,
1
);
if
(
api
==
NULL
)
goto
onError
;
memcpy
(
&
PySocketModule
,
api
,
sizeof
(
PySocketModule
));
DPRINTF
(
" API object loaded and initialized.\n"
);
return
0
;
onError
:
DPRINTF
(
" not found.\n"
);
return
-1
;
}
#endif
/* !PySocket_BUILDING_SOCKET */
#ifdef
__cplusplus
}
#endif
#endif
/* !Py__SOCKET_H */
You can’t perform that action at this time.