summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
...
* Whitespace normalization, folding long lines, uniform commentGuido van Rossum2002-06-071-224/+229
* Correct several blunders in the timeout code, mostly my own fault (forGuido van Rossum2002-06-071-14/+12
* SF patch 555085 (timeout socket implementation) by Michael Gilfix.Guido van Rossum2002-06-061-54/+420
* The insint() function is not used. Nuke it.Guido van Rossum2002-06-061-15/+0
* The tp_new implementation should initialize the errorhandler field,Guido van Rossum2002-06-061-1/+3
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-2/+2
* PyObject_Del can now be used as a function designator.Neil Schemenauer2002-04-121-1/+1
* Got rid of ifdefs for long-obsolete GUSI versions.Jack Jansen2002-04-111-15/+0
* Use the PyModule_Add*() APIs instead of manipulating the module dictFred Drake2002-04-011-201/+217
* Remove last occurrance of PyArg_GetInt. It is deprecated,Neal Norwitz2002-03-251-1/+1
* Due to interaction between the MSL C library and the GUSI I/O library I can g...Jack Jansen2002-03-251-0/+5
* OS/2 EMX port changes (Modules part of patch #450267):Andrew MacIntyre2002-03-031-6/+11
* Patch #520062: Support IPv6 with VC.NET.Martin v. Löwis2002-03-011-0/+3
* Moved the declaration of PySocketSock_Type from socketmodule.h toTim Peters2002-02-171-0/+5
* Remove extraneous variable 'total', as reported by James Rucker.Martin v. Löwis2002-02-161-2/+1
* Also fix the comment.Marc-André Lemburg2002-02-161-1/+1
* Fix the name of the header file.Marc-André Lemburg2002-02-161-1/+1
* Break SSL support out of _socket module and place it into a newMarc-André Lemburg2002-02-161-554/+93
* Patch #477750: Use METH_ constants in Modules.Martin v. Löwis2002-01-171-2/+2
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* Add TCP socket options from glibc 2.2.4. Fixes #495680.Martin v. Löwis2001-12-221-0/+31
* Remove INET6 define. Use ENABLE_IPV6 instead.Martin v. Löwis2001-12-021-11/+11
* More sprintf -> PyOS_snprintf.Tim Peters2001-11-281-1/+2
* sprintf -> PyOS_snprintf in some "obviously safe" cases.Tim Peters2001-11-281-4/+7
* Fix docstring typoAndrew M. Kuchling2001-11-281-1/+1
* Test for negative buffer sizes. Fixes #482871.Martin v. Löwis2001-11-191-0/+5
* Fixes to compile cPickle.c & socketmodule.c on cygwin and possiblyMichael W. Hudson2001-11-091-3/+6
* Fix memory leaks detecting in bug report #478003.Martin v. Löwis2001-11-071-1/+5
* SF patch 473749 compile under OS/2 VA C++, from Michael Muller.Tim Peters2001-11-051-1/+4
* Correct getnameinfo refcounting and tuple parsing. Fixes #476648.Martin v. Löwis2001-11-021-6/+4
* PySocketSock_connect_ex(): On Windows, return the correct Windows exitTim Peters2001-10-301-1/+6
* Oops. In the tp_name field, the name should be "_socket.socket", notGuido van Rossum2001-10-281-2/+2
* Made SocketType and socket the same thing: a subclassable type whoseGuido van Rossum2001-10-271-119/+167
* Add sendall() method, which loops until all data is written or anGuido van Rossum2001-10-261-2/+44
* After discussion with itojun, it was clarified that Tru64 is in error,Martin v. Löwis2001-10-251-1/+3
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-241-15/+10
* Fix typo. Thanks to Jack Jansen for spotting it.Martin v. Löwis2001-10-241-1/+1
* Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfoMartin v. Löwis2001-10-241-0/+6
* (Hopefully) fix SF bug #472675: CVS socketmodule now doesn't compileGuido van Rossum2001-10-191-1/+1
* Expose three OpenSSL API calls for dealing with the PRNG.Jeremy Hylton2001-10-181-0/+67
* Fix a bunch of warnings reported by Skip.Guido van Rossum2001-10-151-8/+8
* Test for __sun instead of __sun__, since SUNWspro only defines the latter;Martin v. Löwis2001-10-131-1/+1
* PySocket_getaddrinfo(): fix two refcount bugs, both having to do withGuido van Rossum2001-10-121-3/+6
* Use PySocket_Err() instead of PyErr_SetFromErrno().Jeremy Hylton2001-10-111-3/+2
* Commit parts of SF patch #462759Jeremy Hylton2001-10-111-68/+68
* Convert socket methods to use METH_O and METH_NOARGS where possible.Jeremy Hylton2001-10-111-50/+39
* Add a bunch of SSL error constantsJeremy Hylton2001-10-111-0/+12
* Lots of code reorganization with a few small API changes.Jeremy Hylton2001-10-101-45/+113
* Do simple error checking before doing any SSL calls.Jeremy Hylton2001-10-101-5/+5
* USe PyObject_SetString() instead of PyObject_SetObject() in newSSLObject().Jeremy Hylton2001-10-101-14/+9