summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-111662: Update socket module to use AC for optimizing performance (gh-111661)Bogdan Romanyuk2023-11-081-68/+59
* gh-106320: Re-add some PyLong/PyDict C-API functions (GH-#111162)scoder2023-10-251-1/+0
* gh-111253: Fix error checking in _socket module init (#111254)Nikita Sobolev2023-10-251-2/+2
* gh-110093: Partially revert previous change in socketmodule.c (GH-111120)Serhiy Storchaka2023-10-201-1/+3
* gh-110093: Replace trivial Py_BuildValue() with direct C API call (GH-110094)Serhiy Storchaka2023-10-201-3/+1
* gh-78469: Declare missing sethostname for Solaris 10 (#109447)Jakub KulĂ­k2023-10-091-2/+3
* gh-63760: Don't declare gethostname() on Solaris (#108817)Victor Stinner2023-09-021-5/+0
* gh-108765: Python.h no longer includes <unistd.h> (#108783)Victor Stinner2023-09-021-1/+1
* gh-108765: Remove old prototypes from pyport.h (#108782)Victor Stinner2023-09-021-1/+5
* gh-108240: Add pycore_capsule.h internal header file (#108596)Victor Stinner2023-08-291-0/+1
* gh-107913: Fix possible losses of OSError error codes (GH-107930)Serhiy Storchaka2023-08-261-5/+7
* gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459)Victor Stinner2023-08-241-4/+4
* gh-106320: Remove private _PyDict functions (#108449)Victor Stinner2023-08-241-0/+1
* gh-108240: Add _PyCapsule_SetTraverse() internal function (#108339)Victor Stinner2023-08-231-6/+31
* gh-104432: Use `memcpy()` to avoid misaligned loads (#104433)Christopher Chavez2023-07-271-5/+17
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-4/+4
* gh-86493: Use PyModule_Add() instead of PyModule_AddObjectRef() (GH-106860)Serhiy Storchaka2023-07-181-10/+2
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-1/+0
* gh-92536: Remove PyUnicode_READY() calls (#105210)Victor Stinner2023-06-011-3/+0
* gh-98836: Extend PyUnicode_FromFormat() (GH-98838)Serhiy Storchaka2023-05-211-6/+2
* GH-104308: socket.getnameinfo should release the GIL (#104307)Nathaniel J. Smith2023-05-081-0/+2
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-96534: socketmodule: support FreeBSD divert(4) socket (#96536)Gleb Smirnoff2023-05-041-0/+13
* gh-89415: Add source-specific multicast constants to socket module (#103684)Reese Hyde2023-04-271-0/+12
* gh-103092: Isolate `socket` module (#103094)Erlend E. Aasland2023-04-091-161/+233
* gh-83004: Harden _socket init (GH-103261)Erlend E. Aasland2023-04-071-537/+581
* Add IPv6 into to the docstring for socket.getsockname (#102961)Brian Haley2023-03-301-1/+2
* gh-102255: Use GetVersionEx instead of GetVersionExW to match argument type (...Max Bachmann2023-03-201-1/+1
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-21/+39
* gh-102336: Remove code specifically for handling Windows 7 (GH-102337)Max Bachmann2023-03-011-32/+10
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-02-241-3/+2
* gh-74895: getaddrinfo no longer raises OverflowError (#2435)Radek Smejkal2023-02-141-5/+9
* gh-100795: Don't call freeaddrinfo on failure. (#101252)Gregory P. Smith2023-01-231-0/+4
* Revert "gh-100795: avoid unexpected `freeaddrinfo` after failed `getaddrinfo`...Kumar Aditya2023-01-221-2/+0
* gh-100795: avoid unexpected `freeaddrinfo` after failed `getaddrinfo` (#101220)Sergey G. Brester2023-01-221-0/+2
* GH-100813: Add `socket.IP_PKTINFO` constant (#10294)dsentinel2023-01-091-0/+3
* gh-98030: socket: add missing TCP socket options (#98031)Matthieu Baerts2022-12-081-3/+63
* bpo-15999: Accept arbitrary values for boolean parameters. (#15609)Serhiy Storchaka2022-12-031-2/+2
* gh-99300: Use Py_NewRef() in Modules/ directory (#99469)Victor Stinner2022-11-141-18/+8
* gh-95389: expose popular ETHERTYPE_* constants in the socket module (#95390)Noam Cohen2022-11-071-0/+23
* gh-95174: WASI: skip missing sockets functions (GH-95179)Christian Heimes2022-07-271-10/+103
* gh-95174: Handle missing dup() and constants in WASI (GH-95229)Christian Heimes2022-07-261-0/+4
* gh-94821: Fix autobind of empty unix domain address (GH-94826)Nir Soffer2022-07-151-2/+4
* gh-94068: Remove HVSOCKET_CONTAINER_PASSTHRU constant because it has been rem...Steve Dower2022-06-211-1/+0
* gh-84461: Silence some compiler warnings on WASM (GH-93978)Christian Heimes2022-06-201-0/+2
* gh-92658: AF_HYPERV is only supported on Windows (#93192)Victor Stinner2022-05-251-7/+7
* gh-92658: Add Hyper-V socket support (GH-92755)Jordan Borean2022-05-241-0/+131
* gh-91968: Add socket constants SO_USER_COOKIE/SO_RTABLE from BSD (#91967)David CARLIER2022-05-081-0/+6
* gh-92210: Move socket.__init__ to argument clinic (#92237)Joshua Herman2022-05-041-14/+26
* gh-91320: Use _PyCFunction_CAST() (#92251)Victor Stinner2022-05-031-4/+4