summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Backport variety of SSL fixes accumulated on the trunk.Jeremy Hylton2002-07-021-142/+348
* backport of 1.196: socket.recv(-1) fixup.Anthony Baxter2001-12-231-0/+5
* wrap SSL_read and SSL_write in Py_{BEGIN,END}_ALLOW_THREADS.Anthony Baxter2001-11-011-0/+4
* partial backport of guido's 1.188.Anthony Baxter2001-11-011-2/+40
* backport of MvL's 1.180Anthony Baxter2001-11-011-1/+1
* backport tim's 1.191:Anthony Baxter2001-11-011-1/+6
* backport (partially) jeremy's 1.178Anthony Baxter2001-11-011-1/+1
* Fix leak in SSLread in nonblocking mode -- from SF bug #472798.Guido van Rossum2001-10-191-0/+1
* Three uses of makesockaddr() used sockaddr buffers that had not be cleared;Fred Drake2001-05-091-0/+3
* Reverting Moshe's EGD patch *and* Martin's patch to make it work withGuido van Rossum2001-04-161-34/+0
* I am TENTATIVELY checking in Martin von Loewis's patch for the SSLGuido van Rossum2001-04-131-0/+7
* Committing patch 405101Moshe Zadka2001-03-181-0/+27
* RISCOS changes by dschwertberger.Guido van Rossum2001-03-021-106/+177
* Remove the optional integer argument to SSL_write; now it will always sendAndrew M. Kuchling2001-02-071-5/+2
* Patch #103636: Allow writing strings containing null bytes to an SSL socketAndrew M. Kuchling2001-02-061-1/+1
* fix a couple last-minute bugs in the raw socket supportJeremy Hylton2001-02-021-24/+24
* SF patch 101137 from Grant EdwardsJeremy Hylton2001-02-021-3/+93
* An ssl-wrapped socket now returns '' on EOF, just like a regularJeremy Hylton2001-02-011-7/+4
* SF Patch #103185, by jlt63: Some more standard modules cleanup for CygwinGuido van Rossum2001-01-221-1/+4
* Use openssl/*.h to include the OpenSSL header filesAndrew M. Kuchling2001-01-181-6/+6
* Adapted from a patch by Barry Scott, SF patch #102875 and SF bugGuido van Rossum2000-12-181-3/+4
* Patch by Michael Hudson to clarify the error message fromGuido van Rossum2000-12-011-1/+7
* Norman Vine <nhv@users.sourceforge.net>:Fred Drake2000-10-061-1/+1
* Remove a lot of the confusing conditional compilation from the beginningFred Drake2000-08-161-47/+4
* Remobe beopen/cnri/cwi copyrights, according to CNRI instructions.Guido van Rossum2000-08-031-10/+0
* Use METH_VARARGS instead of numeric constant 1 in method def. tablesAndrew M. Kuchling2000-08-031-35/+50
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-1/+0
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-251-4/+4
* Remove unused variable and what looks like an ancient relic of an oldThomas Wouters2000-07-241-7/+0
* Create a new section of pyport.h to hold all external function declarationsThomas Wouters2000-07-241-11/+2
* Patch #100926 - Better error messages for socket exceptions on Windows. [Sli...Mark Hammond2000-07-241-2/+78
* Even more ANSIfication: fix as many function pointers and declarations asThomas Wouters2000-07-221-1/+1
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-8/+6
* Errare humanum est.Peter Schneider-Kamp2000-07-111-1/+1
* fixed a warning in getsockaddrlenPeter Schneider-Kamp2000-07-111-1/+1
* - ANSI-ificationFredrik Lundh2000-07-091-94/+47
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-1/+1
* Removed a prototype which is not used in socketmodule.cMarc-André Lemburg2000-07-071-1/+0
* Restore strict checking of socket address values; addresses passed toFred Drake2000-07-011-15/+21
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-13/+46
* Donn Cave <donn@oz.net>:Fred Drake2000-05-161-0/+2
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-9/+9
* Fix typo in last patch -- the symbol's name is MSG_DONWAIT, notGuido van Rossum2000-04-251-1/+1
* Patch by Charles G Waldman:Guido van Rossum2000-04-251-1/+4
* Jack Jansen: The GUSI 2.0 I/O library used on the Mac uses theGuido van Rossum2000-04-241-9/+15
* Use an explicit macro SOCKETCLOSE which expands to closesocket (onGuido van Rossum2000-04-211-10/+14
* In dealloc(), only close the socket if fd != -1.Guido van Rossum2000-04-101-1/+2
* Add warning that multi-arg connect() etc. are deprecated.Guido van Rossum2000-04-041-1/+1