summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-04-07 14:06:14 (GMT)
committerGuido van Rossum <guido@python.org>1993-04-07 14:06:14 (GMT)
commit9575a4457559ed280bdd66e600fbd9f1b54d86d2 (patch)
tree3cc2134f011f7f4a4cf595c6ca8aa0bb2a437ed6 /Modules/socketmodule.c
parentf56e3db1dd4bedc9331933504f5008a03f5d3131 (diff)
downloadcpython-9575a4457559ed280bdd66e600fbd9f1b54d86d2.zip
cpython-9575a4457559ed280bdd66e600fbd9f1b54d86d2.tar.gz
cpython-9575a4457559ed280bdd66e600fbd9f1b54d86d2.tar.bz2
* Microscopic corrections to make things compile on the Cray APP.
* Removed one use of $> in Makefile and warned about others. Added configurable lines in Makefile to change CC and AR.
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r--Modules/socketmodule.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 0e20307..e2328fb 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -82,6 +82,11 @@ Socket methods:
#include <sys/un.h>
#include <netdb.h>
+#ifdef i860
+/* Cray APP doesn't have getpeername() */
+#define NO_GETPEERNAME
+#endif
+
/* Global variable holding the exception type for errors detected
by this module (but not argument type or memory errors, etc.). */
@@ -594,6 +599,7 @@ sock_getsockname(s, args)
}
+#ifndef NO_GETPEERNAME
/* s.getpeername() method */
static object *
@@ -614,6 +620,7 @@ sock_getpeername(s, args)
return socket_error();
return makesockaddr((struct sockaddr *) addrbuf, addrlen);
}
+#endif
/* s.listen(n) method */
@@ -809,7 +816,9 @@ static struct methodlist sock_methods[] = {
{"connect", sock_connect},
{"fileno", sock_fileno},
{"getsockname", sock_getsockname},
+#ifndef NO_GETPEERNAME
{"getpeername", sock_getpeername},
+#endif
{"listen", sock_listen},
{"makefile", sock_makefile},
{"recv", sock_recv},