summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Put back multi-arg capability on connect/connect_ex/bind, forGuido van Rossum2000-04-041-21/+15
* Add '#include <netinet/tcp.h>'Andrew M. Kuchling2000-03-311-0/+1
* Fix all routines to use PyArg_ParseTuple(), and add ":name" to theGuido van Rossum2000-03-241-58/+71
* Fixed inet_ntoa() docstring.Fred Drake2000-03-071-1/+1
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-9/+9
* OpenSSL support. This is based on patches for a version of SSLeay byGuido van Rossum1999-12-071-1/+290
* Bugfix by Jack Jansen for Macintosh (for the inet_ntoa/aton changes):Guido van Rossum1999-11-041-1/+6
* (1) On Linux, we really need to trust the configure script to selectGuido van Rossum1999-09-151-2/+13
* It appears that inet_aton() doesn't really exist except in libresolv;Guido van Rossum1999-09-091-20/+3
* Port inet_ntoa and inet_aton to Windows:Guido van Rossum1999-08-201-2/+23
* Patch by Ben Gertzfield to add inet_aton() and inet_ntoa() calls.Guido van Rossum1999-08-201-0/+72
* Patch by Marc-Andre Lemburg to add a bunch more symbols.Guido van Rossum1999-08-091-2/+86
* Put back __osf__ support for gethostbyname_r(); the real bug was thatGuido van Rossum1999-04-131-1/+5
* 3-arg gethostbyname_r doesn't really work on OSF/1.Guido van Rossum1999-04-101-1/+1
* Implement two suggestions by Jonathan Giddy: (1) in AIX, clear theGuido van Rossum1999-03-241-0/+19
* Vladimir Marangozov implements the AIX 3-arg gethostbyname_r code.Guido van Rossum1999-03-241-14/+32
* Clean up pass for the previous patches.Guido van Rossum1999-03-221-23/+35
* Jonathan Giddy writes:Guido van Rossum1999-03-221-8/+15
* Patch by Rob Riggs for Linux -- glibc2 has a different argumentGuido van Rossum1999-03-151-0/+24
* Thanks to Chris Herborth, the thread primitives now have proper Py*Guido van Rossum1998-12-211-8/+8
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* Use the t# format where appropriate. Greg Stein.Guido van Rossum1998-10-081-1/+1
* Renamed thread.h to pythread.h.Guido van Rossum1998-10-011-1/+1