diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2012-01-23 03:36:23 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2012-01-23 03:36:23 +0000 |
commit | 3e553057324c1547600182b3f732cfacb168ce1f (patch) | |
tree | 41b30767c1d217baa255dbe651be29571d9db915 /sys/net/pipex.h | |
parent | 1b171c80d9ba175afc77f33ddc36e4b390a3c5a5 (diff) |
The ingress filter of pipex and npppd become configurable and disabled
by default. After this change we need to add
ppp.ingress_filter: true
to npppd.conf if it is needed.
ok sthen
Diffstat (limited to 'sys/net/pipex.h')
-rw-r--r-- | sys/net/pipex.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/net/pipex.h b/sys/net/pipex.h index cddbbefc893..8b9a69f0abd 100644 --- a/sys/net/pipex.h +++ b/sys/net/pipex.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pipex.h,v 1.10 2011/10/15 03:24:11 yasuoka Exp $ */ +/* $OpenBSD: pipex.h,v 1.11 2012/01/23 03:36:21 yasuoka Exp $ */ /* * Copyright (c) 2009 Internet Initiative Japan Inc. @@ -89,6 +89,7 @@ struct pipex_session_req { #define PIPEX_PPP_MPPE_REQUIRED 0x00000040 #define PIPEX_PPP_HAS_ACF 0x00000080 #define PIPEX_PPP_ADJUST_TCPMSS 0x00000100 +#define PIPEX_PPP_INGRESS_FILTER 0x00000200 int8_t pr_ccp_id; /* CCP current packet id */ int pr_ppp_id; /* PPP Id. */ uint16_t pr_peer_mru; /* Peer's MRU */ |