- 14f3f59 Fix typo in last patch -- the symbol's name is MSG_DONWAIT, not by Guido van Rossum · 25 years ago
- 2c8bcb8 Patch by Charles G Waldman: by Guido van Rossum · 25 years ago
- ff3ab42 Jack Jansen: The GUSI 2.0 I/O library used on the Mac uses the by Guido van Rossum · 25 years ago
- 2dd8ddd Use an explicit macro SOCKETCLOSE which expands to closesocket (on by Guido van Rossum · 25 years ago
- fa972c9 In dealloc(), only close the socket if fd != -1. by Guido van Rossum · 25 years ago
- b49dc75 Add warning that multi-arg connect() etc. are deprecated. by Guido van Rossum · 25 years ago
- 527c9bd Put back multi-arg capability on connect/connect_ex/bind, for by Guido van Rossum · 25 years ago
- 52a644c Add '#include <netinet/tcp.h>' by Andrew M. Kuchling · 25 years ago
- 27fc3c0 Fix all routines to use PyArg_ParseTuple(), and add ":name" to the by Guido van Rossum · 25 years ago
- e066134 Fixed inet_ntoa() docstring. by Fred Drake · 25 years ago
- 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
- 09c8b6c OpenSSL support. This is based on patches for a version of SSLeay by by Guido van Rossum · 25 years ago
- 1b6e463 Bugfix by Jack Jansen for Macintosh (for the inet_ntoa/aton changes): by Guido van Rossum · 25 years ago
- 9376b74 (1) On Linux, we really need to trust the configure script to select by Guido van Rossum · 25 years ago
- a2e4855 It appears that inet_aton() doesn't really exist except in libresolv; by Guido van Rossum · 25 years ago
- c6a164b Port inet_ntoa and inet_aton to Windows: by Guido van Rossum · 25 years ago
- 5c9eb21 Patch by Ben Gertzfield to add inet_aton() and inet_ntoa() calls. by Guido van Rossum · 25 years ago
- 09be409 Patch by Marc-Andre Lemburg to add a bunch more symbols. by Guido van Rossum · 25 years ago
- 7a12299 Put back __osf__ support for gethostbyname_r(); the real bug was that by Guido van Rossum · 26 years ago
- cbf8906 3-arg gethostbyname_r doesn't really work on OSF/1. by Guido van Rossum · 26 years ago
- e7de206 Implement two suggestions by Jonathan Giddy: (1) in AIX, clear the by Guido van Rossum · 26 years ago
- 7b6c71f Vladimir Marangozov implements the AIX 3-arg gethostbyname_r code. by Guido van Rossum · 26 years ago
- 3baaa13 Clean up pass for the previous patches. by Guido van Rossum · 26 years ago
- 955becc Jonathan Giddy writes: by Guido van Rossum · 26 years ago
- e9cd07b Patch by Rob Riggs for Linux -- glibc2 has a different argument by Guido van Rossum · 26 years ago
- 65d5b57 Thanks to Chris Herborth, the thread primitives now have proper Py* by Guido van Rossum · 26 years ago
- 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
- 7e48898 Use the t# format where appropriate. Greg Stein. by Guido van Rossum · 26 years ago
- 49b5606 Renamed thread.h to pythread.h. by Guido van Rossum · 26 years ago
- ce11393 Remove some unused variables from gethostbyaddr_ex and gethostbyaddr, by Guido van Rossum · 26 years ago
- 954e3ca Removed unused variables. by Guido van Rossum · 26 years ago
- bcc2074 Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
- 7d896ab Added gethostbyname_ex(), which returns the same kind of data as by Guido van Rossum · 26 years ago
- 82a5c66 Added copious docstrings, plus two minor layout tweaks. by Guido van Rossum · 26 years ago
- 578de30 Some systems (e.g. Linux) use enums for some symbols (like IPPROTO_IP) by Guido van Rossum · 26 years ago
- 4f199ea Threading speedup patches by Christopher Lindblad <cjl@infoseek.com>. by Guido van Rossum · 27 years ago
- 32c575d Left-aligned preprocessor directives and changed C++ comments to C comments. by Guido van Rossum · 27 years ago
- 8e9ebfd os2 patch by Jeff Rush by Guido van Rossum · 27 years ago
- 0d2d759 PySocketSock_methods: Added "connect_ex" so the method can actually be called! by Barry Warsaw · 27 years ago
- fc4255d Add s.connect_ex() which returns errno instead of raising an exception. by Guido van Rossum · 27 years ago
- 0cb96de Apply two changes, systematically: by Guido van Rossum · 27 years ago
- 91ba64d socket_type -> SocketType by Guido van Rossum · 27 years ago
- 3b4b6fc Add socket.socket_type, as discussed on c.l.p. by Guido van Rossum · 28 years ago
- fe28fa0 Remove the last three uses of PyArg_GetInt() from the source. by Guido van Rossum · 28 years ago
- aa948df In makesockaddr(), if we don't know the address family, don't raise an by Guido van Rossum · 28 years ago
- 644a12b Tweaks to keep the Microsoft compiler quier. by Guido van Rossum · 28 years ago
- 752300b Check of return values and proper error handling. by Barry Warsaw · 28 years ago
- 25405c7 Added the new getprotobyname() call to the module overview at the top. by Guido van Rossum · 28 years ago
- 3901d85 Added getprotobyname() interface. by Guido van Rossum · 28 years ago
- fb4130d Added extern decl for gethostname() to keep gcc -Wall happy. by Guido van Rossum · 28 years ago
- a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
- d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
- 0848146 Don't close an already closed socket. by Guido van Rossum · 28 years ago
- 6f489d9 Slightly different Windows ifdefs by Guido van Rossum · 28 years ago
- 8d665e6 changed windows test symbols; removed debug printf from sockets by Guido van Rossum · 28 years ago
- be32c89 More rational support for Windows (tested on Roj's NT 3.5 machine only). by Guido van Rossum · 28 years ago
- 006bf91 ntohs, ntohl, htons, htonl -- thanks to Lance by Guido van Rossum · 28 years ago
- d639d4d more changes for Windows, sigh by Guido van Rossum · 28 years ago
- 65af28a Calculate length of AF_UNIX addr struct portably in getsockaddrarg(). by Guido van Rossum · 28 years ago
- 53a9bf8 Get rid of obsolete allowbroadcast(). Avoid core dumps in resizestring(). by Guido van Rossum · 28 years ago
- 5555854 Windows/PC changes by Guido van Rossum · 29 years ago
- dc1c64a remove unused variables by Guido van Rossum · 29 years ago
- 508537b Include GUSI.h if using gusi-sockets by Jack Jansen · 29 years ago
- ca42b16 clear addr buffer before calling getsockname by Guido van Rossum · 29 years ago
- 7c53b77 plug some leaks by Guido van Rossum · 29 years ago
- 30b6b2b add setblocking(); NT changes; null-terminate Unix path by Guido van Rossum · 29 years ago
- 27e177d fixed up comments describing interface by Guido van Rossum · 30 years ago
- 6b14491 mode and optional bufsize for makefile() by Guido van Rossum · 30 years ago
- 5f05eb4 add INADDR_* symbols by Guido van Rossum · 30 years ago
- 3fdf58b add socket related constants by Guido van Rossum · 30 years ago
- a597dde cosmetic changes so these modules will work with the strict new naming scheme by Guido van Rossum · 30 years ago
- ca9b323 better test for existence of hstrerror() by Guido van Rossum · 30 years ago
- 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
- 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 30 years ago
- 73624e9 new style by Guido van Rossum · 30 years ago
- 14ed0b2 * Modules/xxmodule.c: integrated with xxobject.c by Jack by Guido van Rossum · 30 years ago
- e4485b0 Setup.in: added tkinter; rearranged the definition of PYTHONPATH so by Guido van Rossum · 30 years ago
- 6a3eb5f Changes to make it work and compile on NT, by Mark Hammond. by Guido van Rossum · 30 years ago
- c65a525 * Modules/{Setup.in,Makefile.pre.in}: renamed some modules to by Guido van Rossum · 30 years ago
- b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
- b376a4a * timemodule.c: Add hack for Solaris 2. by Guido van Rossum · 31 years ago
- 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
- 18c9a4f * socketmodule.c: fix long-standing bug in recvfrom() -- addrlen by Guido van Rossum · 32 years ago
- eb6b33a * classobject.c: in instance_getattr, don't make a method out of a by Guido van Rossum · 32 years ago
- 9575a44 * Microscopic corrections to make things compile on the Cray APP. by Guido van Rossum · 32 years ago
- e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 32 years ago
- 6f5afc9 * ceval.c: ifdef out the last argument passing compat hack. by Guido van Rossum · 32 years ago
- 5f59d60 * mymalloc.h: always allocate one extra byte, since some malloc's by Guido van Rossum · 32 years ago
- 2a7178e socketmodule.c: added socket.fromfd(fd, family, type, [proto]); by Guido van Rossum · 32 years ago
- c89705d * config.c: Added audioop to lists. by Guido van Rossum · 32 years ago
- aee0879 Made struct a standard built-in module; added string args to {set,get}sockopt; by Guido van Rossum · 32 years ago
- ff4949e * Makefile: cosmetics by Guido van Rossum · 32 years ago
- 25bec8c Sometimes, recvfrom() returns an empty address; this is not an error. by Guido van Rossum · 32 years ago
- ed233a5 Changes for new UNIX-specific built-in module 'select' and new header for by Guido van Rossum · 32 years ago
- 710e1df Some UNIX types want the exact size of the address structure by Guido van Rossum · 32 years ago
- 0e69587d Added {get,set}sockopt(). allowbroadcast is now obsolete. by Guido van Rossum · 32 years ago
- bab9d03 Copyright for 1992 added by Guido van Rossum · 33 years ago
- d15b733 Lint fixes. by Guido van Rossum · 33 years ago
- 9c16d7f Cal get*Str*arg() instead of get*str*arg(), until the code is fixed. by Guido van Rossum · 33 years ago
- 0bb1a51 AIX fix. by Guido van Rossum · 33 years ago