summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* | | merge 3.3 (#20246)Benjamin Peterson2014-01-141-0/+5
* | | Issue #12837: Silence a Clang compiler warning on OS X.Brett Cannon2014-01-071-1/+15
* | | Issue #16136: Remove VMS support and VMS-related codeChristian Heimes2013-12-211-98/+8
* | | Fix broken docstring continuation line for detach().Guido van Rossum2013-12-041-2/+2
* | | Close #19827: On UNIX, setblocking() and settimeout() methods of socket.socketVictor Stinner2013-12-031-8/+10
* | | add SO_PRIORITY (closes #19802)Benjamin Peterson2013-11-271-0/+3
* | | Fix sock_recvfrom_guts(): recvfrom() size is limited to an int on Windows, notVictor Stinner2013-11-151-8/+8
* | | Issue #7171: Update syntax to replace MAX in favor of Py_MAX (matching implem...Jason R. Coombs2013-11-101-1/+5
* | | Issue #7171: Add Windows implementation of ``inet_ntop`` and ``inet_pton`` to...Atsuo Ishimoto2012-07-161-2/+106
* | | Re #18521: remove assignments of variables that are immediately reassigned.Georg Brandl2013-10-141-1/+1
* | | Issue #16201: socket: Use inet_pton()/inet_addr() instead of ad-hoc parsing forCharles-François Natali2013-09-131-17/+52
* | | Use INADDR_BROADCAST instead of hard-coded value (it's part of POSIX andCharles-François Natali2013-08-311-1/+1
* | | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-22/+189
* | | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-4/+4
|\ \ \ | |/ /
| * | Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-271-4/+4
* | | Issue #18549: Eliminate dead code in socket_ntohl().Christian Heimes2013-07-251-2/+0
|\ \ \ | |/ /
| * | Issue #18549: Eliminate dead code in socket_ntohl().Christian Heimes2013-07-251-2/+0
* | | If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.Victor Stinner2013-06-241-4/+4
* | | Issue #9566: recv(), recvfrom(), send(), sendall() and sendto() methodsVictor Stinner2013-06-241-5/+32
* | | Issue #18259: Declare sethostname in socketmodule.c for AIXChristian Heimes2013-06-191-0/+5
|\ \ \ | |/ /
| * | Issue #18259: Declare sethostname in socketmodule.c for AIXChristian Heimes2013-06-191-0/+5
* | | (3.3->default) Ensure that the fix for #17269 also works on OSX 10.4Ronald Oussoren2013-06-101-1/+1
|\ \ \ | |/ /
| * | Ensure that the fix for #17269 also works on OSX 10.4Ronald Oussoren2013-06-101-1/+1
* | | Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macrosVictor Stinner2013-06-041-5/+2
* | | (Merge 3.3) Close #18109: os.uname() now decodes fields from the localeVictor Stinner2013-06-031-8/+8
|\ \ \ | |/ /
| * | Close #18109: os.uname() now decodes fields from the locale encoding, andVictor Stinner2013-06-031-8/+8
* | | (3.3->default) Issue #17269: Workaround for a platform bug in getaddrinfo on OSXRonald Oussoren2013-05-241-0/+9
|\ \ \ | |/ /
| * | Issue #17269: Workaround for a platform bug in getaddrinfo on OSXRonald Oussoren2013-05-241-0/+9
* | | Fix issue #17996: expose socket.AF_LINK constant on BSD and OSX.Giampaolo Rodola'2013-05-211-0/+3
* | | Backed out changeset c0f2b038fc12Charles-François Natali2013-05-211-1/+1
* | | Issue #17683: socket module: return AF_UNIX addresses in Linux abstractCharles-François Natali2013-05-211-1/+1
* | | Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()Charles-Francois Natali2013-05-201-329/+321
* | | merge 3.3Benjamin Peterson2013-05-161-1/+2
|\ \ \ | |/ /
| * | C89 declaration complianceBenjamin Peterson2013-05-161-1/+2
* | | Merge with 3.3, issue #17047: remove doubled words added in 3.3,Terry Jan Reedy2013-03-111-1/+1
|\ \ \ | |/ /
| * | Issue #17047: remove doubled words added in 3.3Terry Jan Reedy2013-03-111-1/+1
| * | Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-1/+1
| |\ \ | | |/
| | * Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-1/+1
| * | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-3/+3
| |\ \ | | |/
| | * Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-191-3/+3
* | | Issue #15359: Add CAN_BCM protocol support to the socket module. Patch by BrianCharles-François Natali2013-02-051-0/+17
* | | Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-141-3/+3
* | | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-181-1/+1
* | | expose TCP_FASTOPEN and MSG_FASTOPENBenjamin Peterson2012-12-131-1/+6