diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1998-12-30 04:31:42 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1998-12-30 04:31:42 +0000 |
commit | d699d09cb626c9c3988f98d0130f7f5415e06cdb (patch) | |
tree | 7d48cfac70293c70ce5cd04a412540e56aeeede2 /net/bounce/files | |
parent | Relay is a very simple proxy that can be used for building simple firewalls. (diff) |
A little program to bounce tcp connections to another machine/port.
Diffstat (limited to 'net/bounce/files')
-rw-r--r-- | net/bounce/files/patch-01 | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/net/bounce/files/patch-01 b/net/bounce/files/patch-01 new file mode 100644 index 000000000000..adf91f3d6676 --- /dev/null +++ b/net/bounce/files/patch-01 @@ -0,0 +1,19 @@ +--- bounce.c.orig Sun Sep 20 15:44:41 1998 ++++ bounce.c Sun Sep 20 15:46:04 1998 +@@ -20,13 +20,14 @@ + #include <sys/ioctl.h> + #include <signal.h> + #include <sys/wait.h> ++#include <unistd.h> ++#include <stdlib.h> ++#include <string.h> + + #define QLEN 5 + #define DEFAULT_PORT 1523 + + char sbuf[16384], cbuf[16384]; +-extern int errno; +-extern char *sys_errlist[]; + + void sigchld() { + signal(SIGCHLD, sigchld); |