summaryrefslogtreecommitdiff
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [3.6] bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)...Serhiy Storchaka2018-12-111-4/+8
* bpo-35050: AF_ALG length check off-by-one error (GH-10058) (GH-11070)Victor Stinner2018-12-101-4/+8
* Fix a possible reference leak in _socket.getaddrinfo(). (GH-10543)Miss Islington (bot)2018-11-151-2/+4
* [3.6] closes bpo-25041: Document AF_PACKET socket address format. (GH-9209)Benjamin Peterson2018-09-111-3/+3
* bpo-32282: Remove unnecessary check for `VersionHelpers.h` in `socketmodule.c...Miss Islington (bot)2018-05-181-10/+0
* Fix _socket module compilation on Cygwin. (GH-4137) (GH-4145)Miss Islington (bot)2018-02-261-1/+1
* [3.6] bpo-32394: Remove some TCP options on older version Windows. (GH-5585)animalize2018-02-261-0/+67
* [3.6] bpo-32746: Fix multiple typos (GH-5144) (GH-5522)Terry Jan Reedy2018-02-031-1/+1
* [3.6] bpo-31927: Fix bugs in socketmodule.c on NetBSD and other issues. (GH-4...Serhiy Storchaka2017-11-091-57/+57
* [3.6] bpo-31806: Use _PyTime_ROUND_TIMEOUT for the timeout argument parsing i...Miss Islington (bot)2017-10-181-3/+3
* [3.6] bpo-31393: Fix the use of PyUnicode_READY(). (GH-3451). (#3453)Serhiy Storchaka2017-09-081-1/+4
* bpo-30319: socket.close() now ignores ECONNRESET (#2565) (#2566)Victor Stinner2017-07-041-1/+3
* Backport bpo-30205 to 3.6 (#1403)Antoine Pitrou2017-05-031-3/+3
* Add sockaddr_alg to sock_addr_t (GH-234) (GH-533)Mariatta2017-03-161-30/+0
* Add TCP_CONGESTION and TCP_USER_TIMEOUTVictor Stinner2016-11-291-0/+6
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-1/+1
* Merge AIX fixes from 3.5 into 3.6Martin Panter2016-11-141-1/+3
|\
| * Issue #28000: Fix gethostbyname_r() usage on AIX with _LINUX_SOURCE_COMPATMartin Panter2016-11-141-1/+3
* | Issue #28480: Avoid label at end of compound statement --without-threadsMartin Panter2016-10-201-0/+1
* | Issue #28471: Fix crash (GIL state related) in socket.setblockingYury Selivanov2016-10-181-9/+15
* | Issue #28139: Merge indentation fixes from 3.5 into 3.6Martin Panter2016-09-171-5/+6
|\ \ | |/
| * Issue #28139: Fix messed up indentationMartin Panter2016-09-171-5/+6
| * Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-071-1/+1
* | Fix NULL check in sock_sendmsg_iovec. CID 1372885Christian Heimes2016-09-131-1/+1
* | socket: Fix memory leak in sendmsg() and sendmsg_afalg()Victor Stinner2016-09-121-5/+12
* | Cleanup socketmodule.cVictor Stinner2016-09-121-13/+31
* | Issue 18550: Check return value of ioctl() / fnctl() in internal_setblockingChristian Heimes2016-09-091-20/+41
* | use the '__linux__' instead 'linux' preprocessor defineBenjamin Peterson2016-09-071-4/+4
* | Issue #27744: correct comment and markupChristian Heimes2016-09-061-1/+1
* | Issue #27744: Add AF_ALG (Linux Kernel crypto) to socket module.Christian Heimes2016-09-051-53/+378
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-301-1/+1
* | #26907: add some missing getsockopt constants.R David Murray2016-08-231-0/+12
* | Issue #27702: Only expose SOCK_RAW when definedBerker Peksag2016-08-081-0/+3
* | Merge 3.5 (INVALID_SOCKET)Victor Stinner2016-07-221-6/+6
|\ \ | |/
| * socket: use INVALID_SOCKETVictor Stinner2016-07-221-5/+6
* | Merge 3.5 (fix internal_select)Victor Stinner2016-07-221-1/+1
|\ \ | |/
| * socket: Fix internal_select()Victor Stinner2016-07-221-1/+1
* | Remove duplicate AF_INET6 additionMartin Panter2016-06-251-3/+0
* | Issue #26536: Use spaces instead of tabsBerker Peksag2016-06-181-4/+4
* | Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by Dani...Steve Dower2016-06-171-3/+23
* | - Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constantsdoko@ubuntu.com2016-06-131-0/+2
* | Issue #26857: The gethostbyaddr_r() workaround is no longer needed withStefan Krah2016-05-221-1/+5
* | Issue #26857: Workaround for missing symbol "gethostbyaddr_r" on Android.Stefan Krah2016-04-261-1/+1
* | Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().Serhiy Storchaka2016-04-131-24/+20
* | Issue #26685: Raise OSError if closing a socket failsMartin Panter2016-04-111-1/+5
* | socketmodule.c: error if option larger than INT_MAXVictor Stinner2016-03-231-3/+16
* | Add socket finalizerVictor Stinner2016-03-211-18/+53
* | ResourceWarning: Revert change on socket and scandirVictor Stinner2016-03-191-1/+2
* | On ResourceWarning, log traceback where the object was allocatedVictor Stinner2016-03-191-2/+1
* | Issue #26406: merge from 3.5Ned Deily2016-02-231-4/+10
|\ \ | |/