diff options
| author | Peter Wemm <peter@FreeBSD.org> | 1997-11-16 04:52:19 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 1997-11-16 04:52:19 +0000 |
| commit | af5dd3181a44c8c60d82fe2f4f8ff9ff81d98e26 (patch) | |
| tree | 1abde20e1d717a2bf3509de2189cbe7fa3c9f91e /contrib/ipfilter/ipsd | |
| parent | acdb2ce24a62f8b955af761b992ae020cc2303ef (diff) | |
Notes
Diffstat (limited to 'contrib/ipfilter/ipsd')
| -rw-r--r-- | contrib/ipfilter/ipsd/Makefile | 10 | ||||
| -rw-r--r-- | contrib/ipfilter/ipsd/ipsd.c | 14 | ||||
| -rw-r--r-- | contrib/ipfilter/ipsd/ipsd.h | 7 | ||||
| -rw-r--r-- | contrib/ipfilter/ipsd/ipsdr.c | 10 | ||||
| -rw-r--r-- | contrib/ipfilter/ipsd/linux.h | 8 | ||||
| -rw-r--r-- | contrib/ipfilter/ipsd/sbpf.c | 7 | ||||
| -rw-r--r-- | contrib/ipfilter/ipsd/sdlpi.c | 10 | ||||
| -rw-r--r-- | contrib/ipfilter/ipsd/slinux.c | 9 | ||||
| -rw-r--r-- | contrib/ipfilter/ipsd/snit.c | 7 |
9 files changed, 44 insertions, 38 deletions
diff --git a/contrib/ipfilter/ipsd/Makefile b/contrib/ipfilter/ipsd/Makefile index eb1986e1c9b2..37f0327154b3 100644 --- a/contrib/ipfilter/ipsd/Makefile +++ b/contrib/ipfilter/ipsd/Makefile @@ -1,9 +1,9 @@ # -# (C)opyright 1993-1996 by Darren Reed. +# Copyright (C) 1993-1997 by Darren Reed. # -# This code may be freely distributed as long as it retains this notice -# and is not changed in any way. The author accepts no responsibility -# for the use of this software. I hate legaleese, don't you ? +# Redistribution and use in source and binary forms are permitted +# provided that this notice is preserved and due credit is given +# to the original author and the contributors. # OBJS=ipsd.o BINDEST=/usr/local/bin @@ -17,7 +17,7 @@ LINUX=slinux.o SUNOS5=dlcommon.o sdlpi.o CC=gcc -CFLAGS=-g -I.. +CFLAGS=-g -I.. -I../ipsend all: @echo "Use one of these targets:" diff --git a/contrib/ipfilter/ipsd/ipsd.c b/contrib/ipfilter/ipsd/ipsd.c index 96364dda483e..d72c93291283 100644 --- a/contrib/ipfilter/ipsd/ipsd.c +++ b/contrib/ipfilter/ipsd/ipsd.c @@ -1,8 +1,9 @@ /* - * (C)opyright December 1995 Darren Reed. + * (C)opyright 1995-1997 Darren Reed. * - * This software may be freely distributed as long as it is not altered - * in any way and that this messagge always accompanies it. + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and due credit is given + * to the original author and the contributors. * * The author of this software makes no garuntee about the * performance of this package or its suitability to fulfill any purpose. @@ -35,7 +36,8 @@ #include "ipsd.h" #ifndef lint -static char sccsid[] = "@(#)ipsd.c 1.3 12/3/95 (C)1995 Darren Reed"; +static const char sccsid[] = "@(#)ipsd.c 1.3 12/3/95 (C)1995 Darren Reed"; +static const char rcsid[] = "@(#)$Id: ipsd.c,v 2.0.2.4 1997/09/28 07:13:17 darrenr Exp $"; #endif extern char *optarg; @@ -247,8 +249,8 @@ main(argc, argv) int argc; char *argv[]; { - char c, *name = argv[0], *dev = NULL; - int fd, writeafter = 10000, angelic = 0; + char *name = argv[0], *dev = NULL; + int fd, writeafter = 10000, angelic = 0, c; while ((c = getopt(argc, argv, "ad:n:")) != -1) switch (c) diff --git a/contrib/ipfilter/ipsd/ipsd.h b/contrib/ipfilter/ipsd/ipsd.h index a9f3920b4c55..27d55ce2a334 100644 --- a/contrib/ipfilter/ipsd/ipsd.h +++ b/contrib/ipfilter/ipsd/ipsd.h @@ -1,8 +1,9 @@ /* - * (C)opyright December 1995 Darren Reed. + * (C)opyright 1995-1997 Darren Reed. * - * This software may be freely distributed as long as it is not altered - * in any way and that this messagge always accompanies it. + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and due credit is given + * to the original author and the contributors. * * The author of this software makes no garuntee about the * performance of this package or its suitability to fulfill any purpose. diff --git a/contrib/ipfilter/ipsd/ipsdr.c b/contrib/ipfilter/ipsd/ipsdr.c index b3bf95765a94..e814bd418166 100644 --- a/contrib/ipfilter/ipsd/ipsdr.c +++ b/contrib/ipfilter/ipsd/ipsdr.c @@ -1,8 +1,9 @@ /* - * (C)opyright December 1995 Darren Reed. + * (C)opyright 1995-1997 Darren Reed. * - * This software may be freely distributed as long as it is not altered - * in any way and that this messagge always accompanies it. + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and due credit is given + * to the original author and the contributors. * * The author of this software makes no garuntee about the * performance of this package or its suitability to fulfill any purpose. @@ -36,7 +37,8 @@ #include "ipsd.h" #ifndef lint -static char sccsid[] = "@(#)ipsdr.c 1.3 12/3/95 (C)1995 Darren Reed"; +static const char sccsid[] = "@(#)ipsdr.c 1.3 12/3/95 (C)1995 Darren Reed"; +static const char rcsid[] = "@(#)$Id: ipsdr.c,v 2.0.2.3 1997/09/28 07:13:18 darrenr Exp $"; #endif extern char *optarg; diff --git a/contrib/ipfilter/ipsd/linux.h b/contrib/ipfilter/ipsd/linux.h index 7eb382b4b7e1..b5e710f3295e 100644 --- a/contrib/ipfilter/ipsd/linux.h +++ b/contrib/ipfilter/ipsd/linux.h @@ -1,9 +1,9 @@ /* - * (C)opyright 1995 by Darren Reed. + * Copyright (C) 1997 by Darren Reed. * - * This code may be freely distributed as long as it retains this notice - * and is not changed in any way. The author accepts no responsibility - * for the use of this software. I hate legaleese, don't you ? + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and due credit is given + * to the original author and the contributors. * * @(#)linux.h 1.1 8/19/95 */ diff --git a/contrib/ipfilter/ipsd/sbpf.c b/contrib/ipfilter/ipsd/sbpf.c index d008a5f00d25..5cb520b56b1e 100644 --- a/contrib/ipfilter/ipsd/sbpf.c +++ b/contrib/ipfilter/ipsd/sbpf.c @@ -1,8 +1,9 @@ /* - * (C)opyright October 1995 Darren Reed. (from tcplog) + * (C)opyright 1995-1997 Darren Reed. (from tcplog) * - * This software may be freely distributed as long as it is not altered - * in any way and that this messagge always accompanies it. + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and due credit is given + * to the original author and the contributors. * */ #include <stdio.h> diff --git a/contrib/ipfilter/ipsd/sdlpi.c b/contrib/ipfilter/ipsd/sdlpi.c index 1d0e41d7f66f..c06aa5f884eb 100644 --- a/contrib/ipfilter/ipsd/sdlpi.c +++ b/contrib/ipfilter/ipsd/sdlpi.c @@ -1,11 +1,9 @@ /* - * (C)opyright October 1992 Darren Reed. (from tcplog) + * (C)opyright 1992-1997 Darren Reed. (from tcplog) * - * This software may be freely distributed as long as it is not altered - * in any way and that this messagge always accompanies it. - * - * The author of this software makes no garuntee about the - * performance of this package or its suitability to fulfill any purpose. + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and due credit is given + * to the original author and the contributors. * */ diff --git a/contrib/ipfilter/ipsd/slinux.c b/contrib/ipfilter/ipsd/slinux.c index 1115b86954ec..29c7c414b82a 100644 --- a/contrib/ipfilter/ipsd/slinux.c +++ b/contrib/ipfilter/ipsd/slinux.c @@ -1,8 +1,9 @@ /* - * (C)opyright October 1992 Darren Reed. (from tcplog) + * (C)opyright 1992-1997 Darren Reed. (from tcplog) * - * This software may be freely distributed as long as it is not altered - * in any way and that this messagge always accompanies it. + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and due credit is given + * to the original author and the contributors. * * The author of this software makes no garuntee about the * performance of this package or its suitability to fulfill any purpose. @@ -30,7 +31,7 @@ #include "tcpip.h" #ifndef lint -static char sccsid[] = "@(#)slinux.c 1.1 12/3/95 (C) 1995 Darren Reed"; +static const char sccsid[] = "@(#)slinux.c 1.1 12/3/95 (C) 1995 Darren Reed"; #endif #define BUFSPACE 32768 diff --git a/contrib/ipfilter/ipsd/snit.c b/contrib/ipfilter/ipsd/snit.c index 4b5fd0346b2a..ba097f048616 100644 --- a/contrib/ipfilter/ipsd/snit.c +++ b/contrib/ipfilter/ipsd/snit.c @@ -1,8 +1,9 @@ /* - * (C)opyright October 1992 Darren Reed. (from tcplog) + * (C)opyright 1992-1997 Darren Reed. (from tcplog) * - * This software may be freely distributed as long as it is not altered - * in any way and that this messagge always accompanies it. + * Redistribution and use in source and binary forms are permitted + * provided that this notice is preserved and due credit is given + * to the original author and the contributors. * * The author of this software makes no garuntee about the * performance of this package or its suitability to fulfill any purpose. |
