index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
socketmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Patch #608999: Fix portability problems with MIPSPro 7.x
Martin v. Löwis
2002-09-19
1
-0/+8
*
Update the module doc comment.
Guido van Rossum
2002-09-03
1
-1/+3
*
SF bug #592645 fix memory leak in socket.getaddrinfo
Neal Norwitz
2002-08-09
1
-0/+2
*
The other half of the patches added to SF patch 555085 by A I
Guido van Rossum
2002-08-08
1
-0/+2
*
Clean up some docstrings. Some docstrings didn't show their return
Guido van Rossum
2002-08-08
1
-10/+11
*
internal_connect(): Windows. When sock_timeout > 0 and connect() yields
Tim Peters
2002-08-06
1
-6/+14
*
Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype
Mark Hammond
2002-08-02
1
-1/+1
*
Pass length of result structure into setipaddr. Fixes bug #565747.
Martin v. Löwis
2002-07-28
1
-8/+12
*
Put checks for error returns in the right place.
Jeremy Hylton
2002-07-25
1
-2/+8
*
Extended socket.htonl and ntohl to accept longs.
Jeremy Hylton
2002-07-25
1
-15/+53
*
Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link
Mark Hammond
2002-07-23
1
-1/+1
*
Bail out early from internal_select() when socket file descriptor
Guido van Rossum
2002-07-19
1
-0/+5
*
A Python float is a C double; redeclare defaulttimeout as such; stops
Tim Peters
2002-07-18
1
-1/+1
*
Silence warning about getdefaulttimeout in PyMethodDef.
Guido van Rossum
2002-07-18
1
-1/+1
*
Add default timeout functionality. This adds setdefaulttimeout() and
Guido van Rossum
2002-07-18
1
-1/+65
*
staticforward bites the dust.
Jeremy Hylton
2002-07-17
1
-1/+1
*
Mac OS X Jaguar (developer preview) seems to have a working getaddrinfo().
Jack Jansen
2002-07-02
1
-0/+5
*
Patch #568124: Add doc string macros.
Martin v. Löwis
2002-06-13
1
-82/+82
*
Fix non-blocking connect() for Windows. Refactored the code
Guido van Rossum
2002-06-13
1
-27/+40
*
Major overhaul of timeout sockets:
Guido van Rossum
2002-06-13
1
-219/+58
*
work around name clash with OS/2 TCPIP routine sock_init()
Andrew MacIntyre
2002-06-13
1
-2/+2
*
Move the conex_finally label up, so that the errno value is always
Guido van Rossum
2002-06-07
1
-1/+1
*
I decided to change the interaction between setblocking() and
Guido van Rossum
2002-06-07
1
-5/+2
*
Major cleanup. Renamed static methods to avoid Py prefix. Other misc
Guido van Rossum
2002-06-07
1
-296/+290
*
Whitespace normalization, folding long lines, uniform comment
Guido van Rossum
2002-06-07
1
-224/+229
*
Correct several blunders in the timeout code, mostly my own fault (for
Guido van Rossum
2002-06-07
1
-14/+12
*
SF patch 555085 (timeout socket implementation) by Michael Gilfix.
Guido van Rossum
2002-06-06
1
-54/+420
*
The insint() function is not used. Nuke it.
Guido van Rossum
2002-06-06
1
-15/+0
*
The tp_new implementation should initialize the errorhandler field,
Guido van Rossum
2002-06-06
1
-1/+3
*
Repair widespread misuse of _PyString_Resize. Since it's clear people
Tim Peters
2002-04-27
1
-2/+2
*
PyObject_Del can now be used as a function designator.
Neil Schemenauer
2002-04-12
1
-1/+1
*
Got rid of ifdefs for long-obsolete GUSI versions.
Jack Jansen
2002-04-11
1
-15/+0
*
Use the PyModule_Add*() APIs instead of manipulating the module dict
Fred Drake
2002-04-01
1
-201/+217
*
Remove last occurrance of PyArg_GetInt. It is deprecated,
Neal Norwitz
2002-03-25
1
-1/+1
*
Due to interaction between the MSL C library and the GUSI I/O library I can g...
Jack Jansen
2002-03-25
1
-0/+5
*
OS/2 EMX port changes (Modules part of patch #450267):
Andrew MacIntyre
2002-03-03
1
-6/+11
*
Patch #520062: Support IPv6 with VC.NET.
Martin v. Löwis
2002-03-01
1
-0/+3
*
Moved the declaration of PySocketSock_Type from socketmodule.h to
Tim Peters
2002-02-17
1
-0/+5
*
Remove extraneous variable 'total', as reported by James Rucker.
Martin v. Löwis
2002-02-16
1
-2/+1
*
Also fix the comment.
Marc-André Lemburg
2002-02-16
1
-1/+1
*
Fix the name of the header file.
Marc-André Lemburg
2002-02-16
1
-1/+1
*
Break SSL support out of _socket module and place it into a new
Marc-André Lemburg
2002-02-16
1
-554/+93
*
Patch #477750: Use METH_ constants in Modules.
Martin v. Löwis
2002-01-17
1
-2/+2
*
Include <unistd.h> in Python.h. Fixes #500924.
Martin v. Löwis
2002-01-12
1
-4/+0
*
Add TCP socket options from glibc 2.2.4. Fixes #495680.
Martin v. Löwis
2001-12-22
1
-0/+31
*
Remove INET6 define. Use ENABLE_IPV6 instead.
Martin v. Löwis
2001-12-02
1
-11/+11
*
More sprintf -> PyOS_snprintf.
Tim Peters
2001-11-28
1
-1/+2
*
sprintf -> PyOS_snprintf in some "obviously safe" cases.
Tim Peters
2001-11-28
1
-4/+7
*
Fix docstring typo
Andrew M. Kuchling
2001-11-28
1
-1/+1
*
Test for negative buffer sizes. Fixes #482871.
Martin v. Löwis
2001-11-19
1
-0/+5
[next]