summaryrefslogtreecommitdiff
path: root/sysutils/socket
diff options
context:
space:
mode:
authortron <tron>1999-02-02 23:00:40 +0000
committertron <tron>1999-02-02 23:00:40 +0000
commit7fd0de843ee5f43c256478a90dcf058372f765f8 (patch)
tree273fd46073cd48a9fdb7cdf06dea5358a3af643b /sysutils/socket
parent20804f65431878bf5470a98ae6fc5237d88c05b7 (diff)
downloadpkgsrc-7fd0de843ee5f43c256478a90dcf058372f765f8.tar.gz
Split patches into seperate files and fix compiler warning.
Diffstat (limited to 'sysutils/socket')
-rw-r--r--sysutils/socket/patches/patch-aa210
-rw-r--r--sysutils/socket/patches/patch-ab10
-rw-r--r--sysutils/socket/patches/patch-ac25
-rw-r--r--sysutils/socket/patches/patch-ad22
-rw-r--r--sysutils/socket/patches/patch-ae39
-rw-r--r--sysutils/socket/patches/patch-af10
-rw-r--r--sysutils/socket/patches/patch-ag61
-rw-r--r--sysutils/socket/patches/patch-ah39
-rw-r--r--sysutils/socket/patches/patch-ai24
9 files changed, 232 insertions, 208 deletions
diff --git a/sysutils/socket/patches/patch-aa b/sysutils/socket/patches/patch-aa
index 6eaac64d7a7..2dc6bb0ae9c 100644
--- a/sysutils/socket/patches/patch-aa
+++ b/sysutils/socket/patches/patch-aa
@@ -1,7 +1,7 @@
-$NetBSD: patch-aa,v 1.3 1998/08/07 11:14:09 agc Exp $
+$NetBSD: patch-aa,v 1.4 1999/02/02 23:00:40 tron Exp $
--- Makefile.orig Thu Sep 10 16:59:31 1992
-+++ Makefile Tue Feb 24 01:36:50 1998
++++ Makefile Tue Feb 2 23:52:02 1999
@@ -8,7 +8,7 @@
### socket.1 in /usr/local/man/man1/socket.1
### Make sure the target directories exist before doing a "make install".
@@ -21,209 +21,3 @@ $NetBSD: patch-aa,v 1.3 1998/08/07 11:14:09 agc Exp $
### It should not be necessary to change anything below this line.
##################################################################
---- README.orig Wed Sep 9 16:45:16 1992
-+++ README Wed Aug 14 16:57:58 1996
-@@ -166,4 +166,4 @@
- 1000 Berlin 10
- Germany
-
-- <nickel@cs.tu-berlin.de>
-+Juergen Nickelsen <jn@berlin.snafu.de>
---- globals.h.orig Sun Aug 30 21:04:27 1992
-+++ globals.h Wed Aug 14 16:57:58 1996
-@@ -8,6 +8,11 @@
- */
-
- #include "patchlevel.h"
-+
-+#if HAVE_SYS_PARAM_H
-+# include <sys/param.h>
-+#endif
-+
-
- /* globals for socket */
-
-@@ -49,4 +54,7 @@
- extern int crlfflag ;
- extern int active_socket ;
- extern char *progname ;
--extern char *sys_errlist[], *sys_siglist[] ;
-+
-+#if !(defined(BSD) && (BSD >=199306))
-+ extern char *sys_errlist[], *sys_siglist[] ;
-+#endif
---- io.c.orig Sun Aug 30 19:15:26 1992
-+++ io.c Wed Aug 14 16:57:58 1996
-@@ -16,6 +16,8 @@
- #endif
- #include <errno.h>
- #include <stdio.h>
-+#include <string.h>
-+#include <unistd.h>
- #include "globals.h"
-
- /* read from from, write to to. select(2) has returned, so input
-@@ -90,7 +92,7 @@
-
- /* all IO to and from the socket is handled here. The main part is
- * a loop around select(2). */
--do_io()
-+void do_io()
- {
- fd_set readfds ;
- int fdset_width ;
---- siglist.c.orig Sun Aug 30 15:50:48 1992
-+++ siglist.c Wed Aug 14 16:57:58 1996
-@@ -32,12 +32,18 @@
- # endif /* !_NSIG */
- #endif /* !NSIG */
-
--char *sys_siglist[NSIG];
-+#if HAVE_SYS_PARAM_H
-+# include <sys/param.h>
-+#endif
-
-+#if !(defined(BSD) && (BSD >=199306))
-+char *sys_siglist[NSIG];
-+#endif
- extern *malloc ();
-
--initialize_siglist ()
-+void initialize_siglist ()
- {
-+#if !(defined(BSD) && (BSD >=199306))
- register int i;
-
- for (i = 0; i < NSIG; i++)
-@@ -219,4 +225,5 @@
- sprintf (sys_siglist[i], "Unknown Signal #%d", i);
- }
- }
-+#endif /* !(defined(BSD) && (BSD >=199306)) */
- }
---- socket.1.orig Wed Sep 9 16:38:19 1992
-+++ socket.1 Wed Aug 14 16:57:58 1996
-@@ -158,4 +158,4 @@
- .SH VERSION
- This manual page describes Socket\-1.1.
- .SH AUTHOR
--Juergen Nickelsen <nickel@cs.tu-berlin.de>
-+Juergen Nickelsen <jn@berlin.snafu.de>
---- socket.c.orig Wed Sep 9 16:14:34 1992
-+++ socket.c Wed Aug 14 16:57:59 1996
-@@ -18,6 +18,8 @@
- #else
- #include <string.h>
- #endif
-+#include <stdlib.h>
-+#include <unistd.h>
- #include "globals.h"
-
- /* global variables */
-@@ -37,6 +39,8 @@
- void server A((int port, char *service_name)) ;
- void handle_server_connection A((void)) ;
- void client A((char *host, int port, char *service_name)) ;
-+extern void init_signals A((void)) ;
-+extern void do_io A((void)) ;
-
- int main(argc, argv)
- int argc ;
-@@ -46,7 +50,7 @@
- int opt ; /* option character */
- int error = 0 ; /* usage error occurred */
- extern int optind ; /* from getopt() */
-- char *host ; /* name of remote host */
-+ /* char *host ; */ /* name of remote host */
- int port ; /* port number for socket */
- char *service_name ; /* name of service for port */
-
-@@ -58,7 +62,7 @@
-
- /* set up progname for later use */
- progname = argv[0] ;
-- if (cp = strrchr(progname, '/')) progname = cp + 1 ;
-+ if ((cp = strrchr(progname, '/'))) progname = cp + 1 ;
-
- /* parse options */
- while ((opt = getopt(argc, argv, "bcflp:qrsvw?")) != -1) {
-@@ -185,15 +189,15 @@
- long norder ;
- char dotted[20] ;
-
-- he = gethostbyaddr(&sa.sin_addr.s_addr,
-+ he = gethostbyaddr((char *)&sa.sin_addr.s_addr,
- sizeof(sa.sin_addr.s_addr), AF_INET) ;
- if (!he) {
- norder = htonl(sa.sin_addr.s_addr) ;
- sprintf(dotted, "%d.%d.%d.%d",
-- (norder >> 24) & 0xff,
-- (norder >> 16) & 0xff,
-- (norder >> 8) & 0xff,
-- norder & 0xff) ;
-+ (int)((norder >> 24) & 0xff),
-+ (int)((norder >> 16) & 0xff),
-+ (int)((norder >> 8) & 0xff),
-+ (int)(norder & 0xff)) ;
- }
- fprintf(stderr, "connection from %s\n",
- (he ? he->h_name : dotted)) ;
---- socketp.c.orig Sun Aug 9 03:41:42 1992
-+++ socketp.c Wed Aug 14 16:57:59 1996
-@@ -11,10 +11,16 @@
- #include <sys/socket.h>
- #include <sys/errno.h>
- #include <netinet/in.h>
-+#include <arpa/inet.h>
- #include <netdb.h>
- #include <stdio.h>
-+#include <stdlib.h>
-+#include <string.h>
-+#include <unistd.h>
- #include "globals.h"
-
-+extern int is_number A((char *));
-+
- /*
- * create a server socket on PORT accepting QUEUE_LENGTH connections
- */
-@@ -52,7 +58,7 @@
- {
- struct sockaddr_in sa ;
- struct hostent *hp ;
-- int a, s ;
-+ int s ;
- long addr ;
-
-
-@@ -76,7 +82,7 @@
- if ((s = socket(sa.sin_family, SOCK_STREAM, 0)) < 0) { /* get socket */
- return -1 ;
- }
-- if (connect(s, &sa, sizeof(sa)) < 0) { /* connect */
-+ if (connect(s, (struct sockaddr *)&sa, sizeof(sa)) < 0) { /* connect */
- close(s) ;
- return -1 ;
- }
---- utils.c.orig Wed Sep 9 16:31:16 1992
-+++ utils.c Wed Aug 14 16:57:59 1996
-@@ -25,8 +25,10 @@
- #else
- #include <sys/resource.h>
- #endif
-+#include <unistd.h>
- #include "globals.h"
-
-+extern void initialize_siglist A((void)) ;
-
- /* Signal handler, print message and exit */
- SIG_HANDLER_RET exitsig(sig)
-@@ -70,7 +72,7 @@
-
- /* set up signal handling. All except TSTP, CONT, CLD, and QUIT
- * are caught with exitsig(). */
--init_signals()
-+void init_signals()
- {
- int i ;
- #ifdef SIG_SETMASK /* only with BSD signals */
diff --git a/sysutils/socket/patches/patch-ab b/sysutils/socket/patches/patch-ab
new file mode 100644
index 00000000000..cc59b1be7b6
--- /dev/null
+++ b/sysutils/socket/patches/patch-ab
@@ -0,0 +1,10 @@
+$NetBSD: patch-ab,v 1.1 1999/02/02 23:00:40 tron Exp $
+
+--- README.orig Wed Sep 9 16:45:16 1992
++++ README Tue Feb 2 23:52:02 1999
+@@ -166,4 +166,4 @@
+ 1000 Berlin 10
+ Germany
+
+- <nickel@cs.tu-berlin.de>
++Juergen Nickelsen <jn@berlin.snafu.de>
diff --git a/sysutils/socket/patches/patch-ac b/sysutils/socket/patches/patch-ac
new file mode 100644
index 00000000000..661811a098f
--- /dev/null
+++ b/sysutils/socket/patches/patch-ac
@@ -0,0 +1,25 @@
+$NetBSD: patch-ac,v 1.1 1999/02/02 23:00:40 tron Exp $
+
+--- globals.h.orig Sun Aug 30 21:04:27 1992
++++ globals.h Tue Feb 2 23:52:03 1999
+@@ -8,6 +8,11 @@
+ */
+
+ #include "patchlevel.h"
++
++#if HAVE_SYS_PARAM_H
++# include <sys/param.h>
++#endif
++
+
+ /* globals for socket */
+
+@@ -49,4 +54,7 @@
+ extern int crlfflag ;
+ extern int active_socket ;
+ extern char *progname ;
+-extern char *sys_errlist[], *sys_siglist[] ;
++
++#if !(defined(BSD) && (BSD >=199306))
++ extern char *sys_errlist[], *sys_siglist[] ;
++#endif
diff --git a/sysutils/socket/patches/patch-ad b/sysutils/socket/patches/patch-ad
new file mode 100644
index 00000000000..f37d5626ef1
--- /dev/null
+++ b/sysutils/socket/patches/patch-ad
@@ -0,0 +1,22 @@
+$NetBSD: patch-ad,v 1.1 1999/02/02 23:00:40 tron Exp $
+
+--- io.c.orig Sun Aug 30 19:15:26 1992
++++ io.c Tue Feb 2 23:52:03 1999
+@@ -16,6 +16,8 @@
+ #endif
+ #include <errno.h>
+ #include <stdio.h>
++#include <string.h>
++#include <unistd.h>
+ #include "globals.h"
+
+ /* read from from, write to to. select(2) has returned, so input
+@@ -90,7 +92,7 @@
+
+ /* all IO to and from the socket is handled here. The main part is
+ * a loop around select(2). */
+-do_io()
++void do_io()
+ {
+ fd_set readfds ;
+ int fdset_width ;
diff --git a/sysutils/socket/patches/patch-ae b/sysutils/socket/patches/patch-ae
new file mode 100644
index 00000000000..bc6e55ef3ed
--- /dev/null
+++ b/sysutils/socket/patches/patch-ae
@@ -0,0 +1,39 @@
+$NetBSD: patch-ae,v 1.1 1999/02/02 23:00:41 tron Exp $
+
+--- siglist.c.orig Sun Aug 30 15:50:48 1992
++++ siglist.c Tue Feb 2 23:58:03 1999
+@@ -23,6 +23,7 @@
+
+ #include <stdio.h>
+ #include <signal.h>
++#include <stdlib.h>
+
+ #if !defined (NSIG)
+ # if defined (_NSIG)
+@@ -32,12 +33,17 @@
+ # endif /* !_NSIG */
+ #endif /* !NSIG */
+
+-char *sys_siglist[NSIG];
++#if HAVE_SYS_PARAM_H
++# include <sys/param.h>
++#endif
+
+-extern *malloc ();
++#if !(defined(BSD) && (BSD >=199306))
++char *sys_siglist[NSIG];
++#endif
+
+-initialize_siglist ()
++void initialize_siglist ()
+ {
++#if !(defined(BSD) && (BSD >=199306))
+ register int i;
+
+ for (i = 0; i < NSIG; i++)
+@@ -219,4 +225,5 @@
+ sprintf (sys_siglist[i], "Unknown Signal #%d", i);
+ }
+ }
++#endif /* !(defined(BSD) && (BSD >=199306)) */
+ }
diff --git a/sysutils/socket/patches/patch-af b/sysutils/socket/patches/patch-af
new file mode 100644
index 00000000000..7be40915b77
--- /dev/null
+++ b/sysutils/socket/patches/patch-af
@@ -0,0 +1,10 @@
+$NetBSD: patch-af,v 1.1 1999/02/02 23:00:41 tron Exp $
+
+--- socket.1.orig Wed Sep 9 16:38:19 1992
++++ socket.1 Tue Feb 2 23:52:03 1999
+@@ -158,4 +158,4 @@
+ .SH VERSION
+ This manual page describes Socket\-1.1.
+ .SH AUTHOR
+-Juergen Nickelsen <nickel@cs.tu-berlin.de>
++Juergen Nickelsen <jn@berlin.snafu.de>
diff --git a/sysutils/socket/patches/patch-ag b/sysutils/socket/patches/patch-ag
new file mode 100644
index 00000000000..29278a87349
--- /dev/null
+++ b/sysutils/socket/patches/patch-ag
@@ -0,0 +1,61 @@
+$NetBSD: patch-ag,v 1.1 1999/02/02 23:00:41 tron Exp $
+
+--- socket.c.orig Wed Sep 9 16:14:34 1992
++++ socket.c Tue Feb 2 23:52:03 1999
+@@ -18,6 +18,8 @@
+ #else
+ #include <string.h>
+ #endif
++#include <stdlib.h>
++#include <unistd.h>
+ #include "globals.h"
+
+ /* global variables */
+@@ -37,6 +39,8 @@
+ void server A((int port, char *service_name)) ;
+ void handle_server_connection A((void)) ;
+ void client A((char *host, int port, char *service_name)) ;
++extern void init_signals A((void)) ;
++extern void do_io A((void)) ;
+
+ int main(argc, argv)
+ int argc ;
+@@ -46,7 +50,7 @@
+ int opt ; /* option character */
+ int error = 0 ; /* usage error occurred */
+ extern int optind ; /* from getopt() */
+- char *host ; /* name of remote host */
++ /* char *host ; */ /* name of remote host */
+ int port ; /* port number for socket */
+ char *service_name ; /* name of service for port */
+
+@@ -58,7 +62,7 @@
+
+ /* set up progname for later use */
+ progname = argv[0] ;
+- if (cp = strrchr(progname, '/')) progname = cp + 1 ;
++ if ((cp = strrchr(progname, '/'))) progname = cp + 1 ;
+
+ /* parse options */
+ while ((opt = getopt(argc, argv, "bcflp:qrsvw?")) != -1) {
+@@ -185,15 +189,15 @@
+ long norder ;
+ char dotted[20] ;
+
+- he = gethostbyaddr(&sa.sin_addr.s_addr,
++ he = gethostbyaddr((char *)&sa.sin_addr.s_addr,
+ sizeof(sa.sin_addr.s_addr), AF_INET) ;
+ if (!he) {
+ norder = htonl(sa.sin_addr.s_addr) ;
+ sprintf(dotted, "%d.%d.%d.%d",
+- (norder >> 24) & 0xff,
+- (norder >> 16) & 0xff,
+- (norder >> 8) & 0xff,
+- norder & 0xff) ;
++ (int)((norder >> 24) & 0xff),
++ (int)((norder >> 16) & 0xff),
++ (int)((norder >> 8) & 0xff),
++ (int)(norder & 0xff)) ;
+ }
+ fprintf(stderr, "connection from %s\n",
+ (he ? he->h_name : dotted)) ;
diff --git a/sysutils/socket/patches/patch-ah b/sysutils/socket/patches/patch-ah
new file mode 100644
index 00000000000..d80886fdfe7
--- /dev/null
+++ b/sysutils/socket/patches/patch-ah
@@ -0,0 +1,39 @@
+$NetBSD: patch-ah,v 1.1 1999/02/02 23:00:41 tron Exp $
+
+--- socketp.c.orig Sun Aug 9 03:41:42 1992
++++ socketp.c Tue Feb 2 23:52:03 1999
+@@ -11,10 +11,16 @@
+ #include <sys/socket.h>
+ #include <sys/errno.h>
+ #include <netinet/in.h>
++#include <arpa/inet.h>
+ #include <netdb.h>
+ #include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
+ #include "globals.h"
+
++extern int is_number A((char *));
++
+ /*
+ * create a server socket on PORT accepting QUEUE_LENGTH connections
+ */
+@@ -52,7 +58,7 @@
+ {
+ struct sockaddr_in sa ;
+ struct hostent *hp ;
+- int a, s ;
++ int s ;
+ long addr ;
+
+
+@@ -76,7 +82,7 @@
+ if ((s = socket(sa.sin_family, SOCK_STREAM, 0)) < 0) { /* get socket */
+ return -1 ;
+ }
+- if (connect(s, &sa, sizeof(sa)) < 0) { /* connect */
++ if (connect(s, (struct sockaddr *)&sa, sizeof(sa)) < 0) { /* connect */
+ close(s) ;
+ return -1 ;
+ }
diff --git a/sysutils/socket/patches/patch-ai b/sysutils/socket/patches/patch-ai
new file mode 100644
index 00000000000..3505f34fa14
--- /dev/null
+++ b/sysutils/socket/patches/patch-ai
@@ -0,0 +1,24 @@
+$NetBSD: patch-ai,v 1.1 1999/02/02 23:00:41 tron Exp $
+
+--- utils.c.orig Wed Sep 9 16:31:16 1992
++++ utils.c Tue Feb 2 23:52:03 1999
+@@ -25,8 +25,10 @@
+ #else
+ #include <sys/resource.h>
+ #endif
++#include <unistd.h>
+ #include "globals.h"
+
++extern void initialize_siglist A((void)) ;
+
+ /* Signal handler, print message and exit */
+ SIG_HANDLER_RET exitsig(sig)
+@@ -70,7 +72,7 @@
+
+ /* set up signal handling. All except TSTP, CONT, CLD, and QUIT
+ * are caught with exitsig(). */
+-init_signals()
++void init_signals()
+ {
+ int i ;
+ #ifdef SIG_SETMASK /* only with BSD signals */