diff options
author | Guido van Rossum <guido@python.org> | 2000-04-21 20:33:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-04-21 20:33:00 (GMT) |
commit | 2dd8dddef412c64692f2ba6eb297411a00ff5d29 (patch) | |
tree | fb6237a48ea61f31445763c4e38b667587c27bda /Modules/socketmodule.c | |
parent | ace88aebbbbb5c96eb3dd88308d03d3d3b9c73e5 (diff) | |
download | cpython-2dd8dddef412c64692f2ba6eb297411a00ff5d29.zip cpython-2dd8dddef412c64692f2ba6eb297411a00ff5d29.tar.gz cpython-2dd8dddef412c64692f2ba6eb297411a00ff5d29.tar.bz2 |
Use an explicit macro SOCKETCLOSE which expands to closesocket (on
Windows), soclose (on OS2), or to close (everywhere else).
Hopefully this fixes a new compilation error that I suddenly get on
Windows because the macro definition for close -> closesocket
apparently was done before including io.h, which contains a prototype
for close. (No idea why this wasn't an error before.)
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index b96ba65..f23a3be 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -214,17 +214,21 @@ int shutdown( int, int ); #if defined(MS_WINDOWS) || defined(__BEOS__) /* BeOS suffers from the same socket dichotomy as Win32... - [cjh] */ /* seem to be a few differences in the API */ -#define close closesocket +#define SOCKETCLOSE closesocket #define NO_DUP /* Actually it exists on NT 3.5, but what the heck... */ #define FORCE_ANSI_FUNC_DEFS #endif #if defined(PYOS_OS2) -#define close soclose +#define SOCKETCLOSE soclose #define NO_DUP /* Sockets are Not Actual File Handles under OS/2 */ #define FORCE_ANSI_FUNC_DEFS #endif +#ifndef SOCKETCLOSE +#define SOCKETCLOSE close +#endif + #ifdef FORCE_ANSI_FUNC_DEFS #define BUILD_FUNC_DEF_1( fnname, arg1type, arg1name ) \ fnname( arg1type arg1name ) @@ -682,7 +686,7 @@ BUILD_FUNC_DEF_2(PySocketSock_accept,PySocketSockObject *,s, PyObject *,args) s->sock_type, s->sock_proto); if (sock == NULL) { - close(newfd); + SOCKETCLOSE(newfd); goto finally; } if (!(addr = makesockaddr((struct sockaddr *) addrbuf, addrlen))) @@ -889,7 +893,7 @@ BUILD_FUNC_DEF_2(PySocketSock_close,PySocketSockObject *,s, PyObject *,args) return NULL; if (s->sock_fd != -1) { Py_BEGIN_ALLOW_THREADS - (void) close(s->sock_fd); + (void) SOCKETCLOSE(s->sock_fd); Py_END_ALLOW_THREADS } s->sock_fd = -1; @@ -988,7 +992,7 @@ BUILD_FUNC_DEF_2(PySocketSock_dup,PySocketSockObject *,s, PyObject *,args) s->sock_type, s->sock_proto); if (sock == NULL) - close(newfd); + SOCKETCLOSE(newfd); return sock; } @@ -1112,7 +1116,7 @@ BUILD_FUNC_DEF_2(PySocketSock_makefile,PySocketSockObject *,s, PyObject *,args) #endif { if (fd >= 0) - close(fd); + SOCKETCLOSE(fd); return PySocket_Err(); } f = PyFile_FromFile(fp, "<socket>", mode, fclose); @@ -1357,7 +1361,7 @@ static void BUILD_FUNC_DEF_1(PySocketSock_dealloc,PySocketSockObject *,s) { if (s->sock_fd != -1) - (void) close(s->sock_fd); + (void) SOCKETCLOSE(s->sock_fd); PyMem_DEL(s); } @@ -1725,7 +1729,7 @@ BUILD_FUNC_DEF_2(PySocket_socket,PyObject *,self, PyObject *,args) /* If the object can't be created, don't forget to close the file descriptor again! */ if (s == NULL) - (void) close(fd); + (void) SOCKETCLOSE(fd); /* From now on, ignore SIGPIPE and let the error checking do the work. */ #ifdef SIGPIPE @@ -1944,8 +1948,8 @@ BUILD_FUNC_DEF_3(newSSLObject, PyString_FromString("newSSLObject error")); return NULL; } - memset(self->server, NULL, sizeof(char) * 256); - memset(self->issuer, NULL, sizeof(char) * 256); + memset(self->server, '\0', sizeof(char) * 256); + memset(self->issuer, '\0', sizeof(char) * 256); self->x_attr = PyDict_New(); self->ctx = SSL_CTX_new(SSLv23_method()); /* Set up context */ |