diff options
author | jim <jim@FreeBSD.org> | 1999-08-26 09:21:23 +0000 |
---|---|---|
committer | jim <jim@FreeBSD.org> | 1999-08-26 09:21:23 +0000 |
commit | 58233e7f0e32904f4ed4618b0e42fb4e93a08024 (patch) | |
tree | 4e5701be45a236cf4b8f724d77202eaa12882bbc /irc/tircproxy/files | |
parent | 600f1a7882dc367932101429c8610fe3ceee0494 (diff) | |
download | FreeBSD-ports-58233e7f0e32904f4ed4618b0e42fb4e93a08024.zip FreeBSD-ports-58233e7f0e32904f4ed4618b0e42fb4e93a08024.tar.gz |
Import of tircproxy.
This program is designed to proxy IRC connections, intercepting and
proxying both DCC CHAT and DCC SEND requests transparently to the user.
PR: 13066
Submitted by: Eugeny Kuzakov <CoreDumped@lab321.ru>
Diffstat (limited to 'irc/tircproxy/files')
-rw-r--r-- | irc/tircproxy/files/patch-aa | 34 | ||||
-rw-r--r-- | irc/tircproxy/files/patch-ab | 11 |
2 files changed, 45 insertions, 0 deletions
diff --git a/irc/tircproxy/files/patch-aa b/irc/tircproxy/files/patch-aa new file mode 100644 index 0000000..0590e6a --- /dev/null +++ b/irc/tircproxy/files/patch-aa @@ -0,0 +1,34 @@ +--- tircproxy.h.orig Wed Aug 11 15:40:04 1999 ++++ tircproxy.h Wed Aug 11 15:43:06 1999 +@@ -25,8 +25,8 @@ + /* Set the location of the broadcast & MOTD files. Undef these to disable + ** the broadcasting feature. + */ +-#define BROADCAST_FILE "/tmp/ircbroadcast" +-#define IRC_MOTD_FILE "/etc/motd.irc" ++#define BROADCAST_FILE "/usr/local/etc/tircproxy/ircbroadcast" ++#define IRC_MOTD_FILE "/usr/local/etc/tircproxy/motd.irc" + + /* Enable this if you want to use the IPF code for tranparency. + */ +@@ -34,7 +34,7 @@ + + /* Enable this if you want to use the Linux code for tranparency. + */ +-#define LINUX 1 ++#define LINUX 0 + + /* Enable this if you want to ask proxy users for passwords. + */ +@@ -97,10 +97,10 @@ + ** + ** This means the proxy does NOT need to run as root for ident responses to + ** be correct (so go get oidentd-1.4+cdir !!). +-*/ + #define CDIR "/var/oidentd/" + #define CDIR_IDENT "ident" + #define CDIR_MAP "user" ++*/ + + + /* The following table defines a list of filenames that are not diff --git a/irc/tircproxy/files/patch-ab b/irc/tircproxy/files/patch-ab new file mode 100644 index 0000000..5b9fcb5 --- /dev/null +++ b/irc/tircproxy/files/patch-ab @@ -0,0 +1,11 @@ +--- Makefile.in.orig Wed Aug 11 16:48:33 1999 ++++ Makefile.in Wed Aug 11 16:48:49 1999 +@@ -12,7 +12,7 @@ + TARGETNAME=@sbindir@/tircproxy + STRIP=@STRIP@ + +-ALL_CFLAGS=-Wall -I. -I@srcdir@ $(CFLAGS) ++ALL_CFLAGS=-Wall -I. -I@srcdir@ $(CFLAGS) -I/sys -I/usr/src/sys + + .SUFFIXES: + .SUFFIXES: .c .o |