]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Enable rfc1413 ident functionality on NetWare. Win32 may also need to
authorBradley Nicholes <bnicholes@apache.org>
Tue, 16 Sep 2003 20:28:12 +0000 (20:28 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Tue, 16 Sep 2003 20:28:12 +0000 (20:28 +0000)
include these #defines

Submitted by: G�nter Knauf <gk@gknw.de>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@101258 13f79535-47bb-0310-9956-ffa450edef68

src/main/rfc1413.c

index ebef8be6886dd0d780f897728e434c5076aa1c9b..7d134e5896ddd2f35e33b8c11c2dffd8aa18bb40 100644 (file)
 #include "rfc1413.h"
 #include "http_main.h"         /* set_callback_and_alarm */
 
+/* XXX WIN32 may also need to include these #defines */
+#if (defined(NETWARE) /*|| defined(WIN32)*/)
+#define write(a,b,c) send(a,b,c,0)
+#define read(a,b,c) recv(a,b,c,0)
+#endif /* NETWARE || WIN32 */
+
 /* Local stuff. */
 /* Semi-well-known port */
 #define        RFC1413_PORT    113