diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1998-06-30 21:37:52 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1998-06-30 21:37:52 +0000 |
commit | d24b460fc4a8aca2068d07ef9490e1ec90f039f0 (patch) | |
tree | 43c87e2a5343d484e8a6f2bac04e24ce2d7affee /sys/net | |
parent | 17053a685a863db1e3b3e04e17128ec23d3b3240 (diff) |
Add an NPMODE_KEEPLAST
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/ppp_defs.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/net/ppp_defs.h b/sys/net/ppp_defs.h index 7c1edef093b..0e36ce37ddc 100644 --- a/sys/net/ppp_defs.h +++ b/sys/net/ppp_defs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ppp_defs.h,v 1.5 1998/05/08 05:01:59 millert Exp $ */ +/* $OpenBSD: ppp_defs.h,v 1.6 1998/06/30 21:37:51 angelos Exp $ */ /* $NetBSD: ppp_defs.h,v 1.1 1995/07/04 06:28:26 paulus Exp $ */ /* @@ -102,7 +102,8 @@ enum NPmode { NPMODE_PASS, /* pass the packet through */ NPMODE_DROP, /* silently drop the packet */ NPMODE_ERROR, /* return an error */ - NPMODE_QUEUE /* save it up for later. */ + NPMODE_QUEUE, /* save it up for later. */ + NPMODE_KEEPLAST /* keep the last packet received in the queue */ }; /* |