summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* merge 3.4Benjamin Peterson2015-04-011-1/+2
|\
| * remove assignment in conditionalBenjamin Peterson2015-04-011-1/+2
* | Issue #23618: Fix EINTR handling on WindowsVictor Stinner2015-04-011-2/+2
* | Issue #23618: Enhance EINTR handling in socket.connect()Victor Stinner2015-03-311-35/+37
* | Issue #23618: Fix EINTR handling in socket.connect()Victor Stinner2015-03-311-10/+8
* | Issue #23618: Cleanup internal_connect() in socketmodule.cVictor Stinner2015-03-311-3/+1
* | Issue #23618: Refactor internal_connect()Victor Stinner2015-03-311-79/+30
* | Issue #23618: Refactor internal_connect()Victor Stinner2015-03-311-35/+57
* | Issue #22117: Fix integer overflow check in socket_parse_timeout() on WindowsVictor Stinner2015-03-311-3/+6
* | Issue #23618: Fix internal_connect_select()Victor Stinner2015-03-311-1/+1
* | Issue #23618: internal_connect_select() now waits also for error eventsVictor Stinner2015-03-311-6/+15
* | Issue #23618: Refactor internal_select() to prepare socket.connect() for EINTRVictor Stinner2015-03-311-13/+23
* | Issue #23618: Refactor the _socket moduleVictor Stinner2015-03-311-17/+11
* | Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILINGVictor Stinner2015-03-301-6/+7
* | Issue #22117: Fix usage of _PyTime_AsTimeval()Victor Stinner2015-03-301-6/+2
* | Issue #22117: The socket module uses _PyTime_t timestamp for timeoutsVictor Stinner2015-03-281-90/+123
* | Issue #23618, #22117: refactor socketmodule.cVictor Stinner2015-03-271-83/+113
* | Fix compiler warnings: comparison between signed and unsigned numbersVictor Stinner2015-03-201-1/+1
* | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, andSerhiy Storchaka2015-03-201-47/+60
* | Issue #23646: Enhance precision of time.sleep() and socket timeout whenVictor Stinner2015-03-201-1/+1
* | Fixed GCC version testing.Serhiy Storchaka2015-03-051-2/+2
* | Fix "GCC diagnostic" in socketmodule.cVictor Stinner2015-03-051-2/+2
* | Silenced minor GCC warnings.Serhiy Storchaka2015-02-261-0/+7
* | Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-2/+4
|\ \ | |/
| * Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integerSerhiy Storchaka2015-02-161-2/+4
* | Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-071-112/+127
* | Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ...Steve Dower2014-11-221-1/+10
* | Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-3/+3
|\ \ | |/
| * Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-3/+3
* | Issue #22378: socket module: add SO_MARK.Charles-François Natali2014-09-181-0/+3
* | Issue #22215: Now ValueError is raised instead of TypeError when str or bytesSerhiy Storchaka2014-09-061-1/+1
* | Issue #22043: time.monotonic() is now always availableVictor Stinner2014-09-021-2/+2
* | Issue #22218: Fix "comparison between signed and unsigned integers" warnings inVictor Stinner2014-08-171-5/+6
* | Issue #22127: fix typo.Martin v. Löwis2014-08-051-1/+1
* | Issue #22127: Bypass IDNA for pure-ASCII host names (in particular for numeri...Martin v. Löwis2014-08-051-10/+75
* | (Merge 3.4) Fix repr(_socket.socket) on Windows 64-bit: don't fail withVictor Stinner2014-07-261-2/+9
|\ \ | |/
| * Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowErrorVictor Stinner2014-07-261-2/+9
* | Issue #22042: Avoid dangerous C cast in socket.setblocking()Victor Stinner2014-07-231-2/+5
* | Fix typo in socket.getaddrinfo() docstring.Berker Peksag2014-06-301-4/+4
|\ \ | |/
| * Fix typo in socket.getaddrinfo() docstring.Berker Peksag2014-06-301-4/+4
* | All modern compilers provide a offsetof() functionVictor Stinner2014-06-031-4/+0
* | Issue #21455: Add a default backlog to socket.listen().Charles-François Natali2014-05-221-10/+12
|/
* Issue #10141, Issue 20065: Changed #if to take CAN_RAW into account.Vinay Sajip2014-03-211-1/+1
* Issue #10141: updated new usages of AF_CAN to be in #ifdef AF_CAN rather than...Vinay Sajip2014-03-201-3/+3
* Issue #20065: socketmodule: Fix build error when AF_CAN is defined without theCharles-François Natali2014-02-081-3/+3
|\
| * Issue #20065: socketmodule: Fix build error when AF_CAN is defined without theCharles-François Natali2014-02-081-3/+3
* | merge 3.3 (#20251)Benjamin Peterson2014-01-141-1/+0
|\ \ | |/
| * remove overly strict assertion (closes #20251)Benjamin Peterson2014-01-141-1/+0
| * merge 3.2 (#20246)Benjamin Peterson2014-01-141-0/+5
| |\
| | * complain when nbytes > buflen to fix possible buffer overflow (closes #20246)Benjamin Peterson2014-01-141-0/+5