]> git.ipfire.org Git - thirdparty/ulogd2.git/commitdiff
update version information and copyright info
authorlaforge <laforge>
Wed, 5 Mar 2003 23:03:49 +0000 (23:03 +0000)
committerlaforge <laforge>
Wed, 5 Mar 2003 23:03:49 +0000 (23:03 +0000)
README
ulogd.c

diff --git a/README b/README
index dd41f77461a11c9e197c2c36f146e558149270a1..3510007bdd0ae487abf4582dc1b3f7af4956a2df 100644 (file)
--- a/README
+++ b/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.c b/ulogd.c
index e0f91a6b57426c9d8a5a3dfa06fefcbf7d1ca5cf..6325dd1d4c2ac0f5e5b7d7da9a046612faf04e3f 100644 (file)
--- a/ulogd.c
+++ b/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");