diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-05 05:58:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-05 05:58:55 +0000 |
commit | e689014cc2747748c76a2b3f492470f1362031e2 (patch) | |
tree | 30f2062ed5c01f4b6d08d952c92e6e0c432b485f /sbin/ipf | |
parent | 20a077f722546853c96c85750162a4b9c096033b (diff) |
ipf 3.2.10; work by kjell
Diffstat (limited to 'sbin/ipf')
-rw-r--r-- | sbin/ipf/ipf.5 | 8 | ||||
-rw-r--r-- | sbin/ipf/ipf.c | 6 | ||||
-rw-r--r-- | sbin/ipf/ipf.h | 8 | ||||
-rw-r--r-- | sbin/ipf/opt.c | 6 | ||||
-rw-r--r-- | sbin/ipf/parse.c | 6 |
5 files changed, 18 insertions, 16 deletions
diff --git a/sbin/ipf/ipf.5 b/sbin/ipf/ipf.5 index 5f469e4927a..4c3c47f65eb 100644 --- a/sbin/ipf/ipf.5 +++ b/sbin/ipf/ipf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ipf.5,v 1.11 1998/09/15 09:55:44 pattonme Exp $ +.\" $OpenBSD: ipf.5,v 1.12 1999/02/05 05:58:41 deraadt Exp $ .TH IPF 5 .SH NAME ipf \- IP packet filter rule syntax @@ -447,9 +447,9 @@ all inbound packets, we would do something like: .LP .nf block in all - block in on le0 quick all head 100 - block in on le1 quick all head 200 - block in on lo0 quick all head 300 + block in quick on le0 all head 100 + block in quick on le1 all head 200 + block in quick on lo0 all head 300 .fi .PP diff --git a/sbin/ipf/ipf.c b/sbin/ipf/ipf.c index ab2a50cc113..93b39cbb35f 100644 --- a/sbin/ipf/ipf.c +++ b/sbin/ipf/ipf.c @@ -1,6 +1,6 @@ -/* $OpenBSD: ipf.c,v 1.12 1998/09/15 09:55:44 pattonme Exp $ */ +/* $OpenBSD: ipf.c,v 1.13 1999/02/05 05:58:42 deraadt Exp $ */ /* - * Copyright (C) 1993-1997 by Darren Reed. + * Copyright (C) 1993-1998 by Darren Reed. * * Redistribution and use in source and binary forms are permitted * provided that this notice is preserved and due credit is given @@ -45,7 +45,7 @@ #if !defined(lint) static const char sccsid[] = "@(#)ipf.c 1.23 6/5/96 (C) 1993-1995 Darren Reed"; -static const char rcsid[] = "@(#)$Id: ipf.c,v 1.12 1998/09/15 09:55:44 pattonme Exp $"; +static const char rcsid[] = "@(#)$Id: ipf.c,v 1.13 1999/02/05 05:58:42 deraadt Exp $"; #endif static void frsync __P((void)); diff --git a/sbin/ipf/ipf.h b/sbin/ipf/ipf.h index afd65120faf..f4806ddaa9f 100644 --- a/sbin/ipf/ipf.h +++ b/sbin/ipf/ipf.h @@ -1,13 +1,13 @@ -/* $OpenBSD: ipf.h,v 1.8 1998/01/26 04:13:36 dgregor Exp $ */ +/* $OpenBSD: ipf.h,v 1.9 1999/02/05 05:58:42 deraadt Exp $ */ /* - * Copyright (C) 1993-1997 by Darren Reed. + * Copyright (C) 1993-1998 by Darren Reed. * * 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. * * @(#)ipf.h 1.12 6/5/96 - * $Id: ipf.h,v 1.8 1998/01/26 04:13:36 dgregor Exp $ + * $Id: ipf.h,v 1.9 1999/02/05 05:58:42 deraadt Exp $ */ #ifndef __IPF_H__ @@ -70,6 +70,8 @@ extern u_32_t optname __P((char ***, u_short *)); extern void printpacket __P((ip_t *)); #if SOLARIS extern int inet_aton __P((const char *, struct in_addr *)); +extern int gethostname __P((char *, int )); +extern void sync __P((void)); #endif #ifdef sun diff --git a/sbin/ipf/opt.c b/sbin/ipf/opt.c index 4e470381ef0..c659bdedda9 100644 --- a/sbin/ipf/opt.c +++ b/sbin/ipf/opt.c @@ -1,6 +1,6 @@ -/* $OpenBSD: opt.c,v 1.9 1998/09/15 09:55:44 pattonme Exp $ */ +/* $OpenBSD: opt.c,v 1.10 1999/02/05 05:58:42 deraadt Exp $ */ /* - * Copyright (C) 1993-1997 by Darren Reed. + * Copyright (C) 1993-1998 by Darren Reed. * * Redistribution and use in source and binary forms are permitted * provided that this notice is preserved and due credit is given @@ -32,7 +32,7 @@ #if !defined(lint) static const char sccsid[] = "@(#)opt.c 1.8 4/10/96 (C) 1993-1995 Darren Reed"; -static const char rcsid[] = "@(#)$Id: opt.c,v 1.9 1998/09/15 09:55:44 pattonme Exp $"; +static const char rcsid[] = "@(#)$Id: opt.c,v 1.10 1999/02/05 05:58:42 deraadt Exp $"; #endif extern int opts; diff --git a/sbin/ipf/parse.c b/sbin/ipf/parse.c index 585ce01362a..d819996d5f6 100644 --- a/sbin/ipf/parse.c +++ b/sbin/ipf/parse.c @@ -1,6 +1,6 @@ -/* $OpenBSD: parse.c,v 1.22 1998/11/24 03:05:34 deraadt Exp $ */ +/* $OpenBSD: parse.c,v 1.23 1999/02/05 05:58:42 deraadt Exp $ */ /* - * Copyright (C) 1993-1997 by Darren Reed. + * Copyright (C) 1993-1998 by Darren Reed. * * Redistribution and use in source and binary forms are permitted * provided that this notice is preserved and due credit is given @@ -40,7 +40,7 @@ #if !defined(lint) static const char sccsid[] ="@(#)parse.c 1.44 6/5/96 (C) 1993-1996 Darren Reed"; -static const char rcsid[] = "@(#)$Id: parse.c,v 1.22 1998/11/24 03:05:34 deraadt Exp $"; +static const char rcsid[] = "@(#)$Id: parse.c,v 1.23 1999/02/05 05:58:42 deraadt Exp $"; #endif extern struct ipopt_names ionames[], secclass[]; |