summaryrefslogtreecommitdiffstats
path: root/ulogd
diff options
context:
space:
mode:
authorlaforge <laforge>2003-03-05 23:03:49 +0000
committerlaforge <laforge>2003-03-05 23:03:49 +0000
commit650097c57dd500630c22c8e92ac99a87cde24f39 (patch)
tree9396441d2910fc462a3557df85e94a69b775acb2 /ulogd
parent82614a652581df6a4d3aacb1ffe622308ad6dbe6 (diff)
update version information and copyright info
Diffstat (limited to 'ulogd')
-rw-r--r--ulogd/README16
-rw-r--r--ulogd/ulogd.c14
2 files changed, 17 insertions, 13 deletions
diff --git a/ulogd/README b/ulogd/README
index dd41f77..3510007 100644
--- a/ulogd/README
+++ b/ulogd/README
@@ -1,7 +1,7 @@
-Userspace logging facility for netfilter / linux 2.4
-$Id: README,v 1.6 2001/05/20 15:01:35 laforge Exp $
+Userspace logging facility for iptables / linux 2.4
+$Id: README,v 1.7 2002/04/16 12:44:41 laforge Exp $
-Project Homepage: http://www.gnumonks.org/projects/
+Project Homepage: http://www.gnumonks.org/projects/ulogd
Mailinglist: http://lists.gnumonks.org/mailman/listinfo/ulogd/
This is just a short README, pleaes see the more extensive documentation
@@ -12,7 +12,7 @@ in the doc/ subdirectory.
This packages is intended for passing packets from the kernel to userspace
to do some logging there. It should work like that:
-- Register a target called ULOG with netfilter
+- Register a target called ULOG with iptables
- if the target is hit:
- send the packet out using netlink multicast facility
- return NF_CONTINUE immediately
@@ -36,13 +36,17 @@ an easy to use plugin interface to write additional packet interpreters and
output targets. Example plugins (interpreter: ip, tcp, icmp output: simple
logging to a file) are included.
+= documentation (doc)
+A quite verbose documentation of this package and it's configuration exists,
+please actually make use of it and read it :)
+
===> USAGE
The kernel part of the userspace logging facility (ipt_ULOG.o) is included
in kernels >= 2.4.18-pre8. If you are running older kernel versions, you MUST
install the ulog-patch from netfilter patch-o-matic FIRST !!
-Please go to the netfilter homepage (http://netfilter.gnumonks.org/)
+Please go to the netfilter homepage (http://www.netfilter.org/)
and download the latest iptables package. There is a system called
patch-o-matic, which manages recent netfilter development, which has
not been included in the stock kernel yet.
@@ -84,7 +88,7 @@ Setting --ulog-cprange to 0 does always copy the whole packet. Default is 0
===> COPYRIGHT + CREDITS
-The code is (C) 2000-2002 by Harald Welte <laforge@gnumonks.org>
+The code is (C) 2000-2003 by Harald Welte <laforge@gnumonks.org>
Thanks also to the valuable Contributions of Daniel Stone, Alexander
Janssen and Michael Stolovitzsky.
diff --git a/ulogd/ulogd.c b/ulogd/ulogd.c
index e0f91a6..6325dd1 100644
--- a/ulogd/ulogd.c
+++ b/ulogd/ulogd.c
@@ -1,11 +1,11 @@
-/* ulogd, Version $Revision: 1.32 $
+/* ulogd, Version $Revision: 1.33 $
*
- * $Id: ulogd.c,v 1.32 2003/01/13 13:37:56 laforge Exp $
+ * $Id: ulogd.c,v 1.33 2003/02/08 12:21:18 laforge Exp $
*
- * userspace logging daemon for the netfilter ULOG target
+ * userspace logging daemon for the iptables ULOG target
* of the linux 2.4 netfilter subsystem.
*
- * (C) 2000-2001 by Harald Welte <laforge@gnumonks.org>
+ * (C) 2000-2003 by Harald Welte <laforge@gnumonks.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
- * $Id: ulogd.c,v 1.32 2003/01/13 13:37:56 laforge Exp $
+ * $Id: ulogd.c,v 1.33 2003/02/08 12:21:18 laforge Exp $
*
* Modifications:
* 14 Jun 2001 Martin Josefsson <gandalf@wlug.westbo.se>
@@ -31,7 +31,7 @@
* - added support for logging to stdout
*/
-#define ULOGD_VERSION "1.0pre1"
+#define ULOGD_VERSION "1.00"
#include <unistd.h>
#include <stdio.h>
@@ -575,7 +575,7 @@ static void print_usage(void)
{
/* FIXME */
printf("ulogd Version %s\n", ULOGD_VERSION);
- printf("Copyright (C) 2000-2002 Harald Welte "
+ printf("Copyright (C) 2000-2003 Harald Welte "
"<laforge@gnumonks.org>\n\n");
printf("Paramters:\n");
printf("\t-h --help\tThis help page\n");