Deleted Added
full compact
ng_ppp.4 (171688) ng_ppp.4 (231564)
1.\" Copyright (c) 1996-1999 Whistle Communications, Inc.
2.\" All rights reserved.
3.\"
4.\" Subject to the following obligations and disclaimer of warranty, use and
5.\" redistribution of this software, in source or object code forms, with or
6.\" without modifications are expressly permitted by Whistle Communications;
7.\" provided, however, that:
8.\" 1. Any and all reproductions of the source or object code must include the

--- 18 unchanged lines hidden (view full) ---

27.\" SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
28.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30.\" THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
31.\" OF SUCH DAMAGE.
32.\"
33.\" Author: Archie Cobbs <archie@FreeBSD.org>
34.\"
1.\" Copyright (c) 1996-1999 Whistle Communications, Inc.
2.\" All rights reserved.
3.\"
4.\" Subject to the following obligations and disclaimer of warranty, use and
5.\" redistribution of this software, in source or object code forms, with or
6.\" without modifications are expressly permitted by Whistle Communications;
7.\" provided, however, that:
8.\" 1. Any and all reproductions of the source or object code must include the

--- 18 unchanged lines hidden (view full) ---

27.\" SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
28.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30.\" THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
31.\" OF SUCH DAMAGE.
32.\"
33.\" Author: Archie Cobbs <archie@FreeBSD.org>
34.\"
35.\" $FreeBSD: head/share/man/man4/ng_ppp.4 171688 2007-08-01 20:49:35Z mav $
35.\" $FreeBSD: head/share/man/man4/ng_ppp.4 231564 2012-02-12 18:29:56Z ed $
36.\" $Whistle: ng_ppp.8,v 1.3 1999/01/25 23:46:27 archie Exp $
37.\"
38.Dd December 28, 2006
39.Dt NG_PPP 4
40.Os
41.Sh NAME
42.Nm ng_ppp
43.Nd PPP protocol netgraph node type

--- 306 unchanged lines hidden (view full) ---

350.Dv "struct ng_ppp_node_conf"
351as an argument:
352.Bd -literal -offset 0n
353/* Per-link config structure */
354struct ng_ppp_link_conf {
355 u_char enableLink; /* enable this link */
356 u_char enableProtoComp;/* enable protocol field compression */
357 u_char enableACFComp; /* enable addr/ctrl field compression */
36.\" $Whistle: ng_ppp.8,v 1.3 1999/01/25 23:46:27 archie Exp $
37.\"
38.Dd December 28, 2006
39.Dt NG_PPP 4
40.Os
41.Sh NAME
42.Nm ng_ppp
43.Nd PPP protocol netgraph node type

--- 306 unchanged lines hidden (view full) ---

350.Dv "struct ng_ppp_node_conf"
351as an argument:
352.Bd -literal -offset 0n
353/* Per-link config structure */
354struct ng_ppp_link_conf {
355 u_char enableLink; /* enable this link */
356 u_char enableProtoComp;/* enable protocol field compression */
357 u_char enableACFComp; /* enable addr/ctrl field compression */
358 u_int16_t mru; /* peer MRU */
359 u_int32_t latency; /* link latency (in milliseconds) */
360 u_int32_t bandwidth; /* link bandwidth (in bytes/second) */
358 uint16_t mru; /* peer MRU */
359 uint32_t latency; /* link latency (in milliseconds) */
360 uint32_t bandwidth; /* link bandwidth (in bytes/second) */
361};
362
363/* Bundle config structure */
364struct ng_ppp_bund_conf {
361};
362
363/* Bundle config structure */
364struct ng_ppp_bund_conf {
365 u_int16_t mrru; /* multilink peer MRRU */
365 uint16_t mrru; /* multilink peer MRRU */
366 u_char enableMultilink; /* enable multilink */
367 u_char recvShortSeq; /* recv multilink short seq # */
368 u_char xmitShortSeq; /* xmit multilink short seq # */
369 u_char enableRoundRobin; /* xmit whole packets */
370 u_char enableIP; /* enable IP data flow */
371 u_char enableIPv6; /* enable IPv6 data flow */
372 u_char enableAtalk; /* enable AppleTalk data flow */
373 u_char enableIPX; /* enable IPX data flow */

--- 87 unchanged lines hidden ---
366 u_char enableMultilink; /* enable multilink */
367 u_char recvShortSeq; /* recv multilink short seq # */
368 u_char xmitShortSeq; /* xmit multilink short seq # */
369 u_char enableRoundRobin; /* xmit whole packets */
370 u_char enableIP; /* enable IP data flow */
371 u_char enableIPv6; /* enable IPv6 data flow */
372 u_char enableAtalk; /* enable AppleTalk data flow */
373 u_char enableIPX; /* enable IPX data flow */

--- 87 unchanged lines hidden ---