Deleted Added
full compact
ccp.h (37320) ccp.h (44305)
1/*
2 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
3 *
4 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
5 *
6 * Redistribution and use in source and binary forms are permitted
7 * provided that the above copyright notice and this paragraph are
8 * duplicated in all such forms and that any documentation,
9 * advertising materials, and other materials related to such
10 * distribution and use acknowledge that the software was developed
11 * by the Internet Initiative Japan. The name of the
12 * IIJ may not be used to endorse or promote products derived
13 * from this software without specific prior written permission.
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 *
1/*
2 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
3 *
4 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
5 *
6 * Redistribution and use in source and binary forms are permitted
7 * provided that the above copyright notice and this paragraph are
8 * duplicated in all such forms and that any documentation,
9 * advertising materials, and other materials related to such
10 * distribution and use acknowledge that the software was developed
11 * by the Internet Initiative Japan. The name of the
12 * IIJ may not be used to endorse or promote products derived
13 * from this software without specific prior written permission.
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 *
18 * $Id: ccp.h,v 1.18 1998/06/27 23:48:41 brian Exp $
18 * $Id: ccp.h,v 1.19 1998/06/30 23:04:12 brian Exp $
19 *
20 * TODO:
21 */
22
23#define CCP_MAXCODE CODE_RESETACK
24
25#define TY_OUI 0 /* OUI */
26#define TY_PRED1 1 /* Predictor type 1 */

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

44struct link;
45
46struct ccp_config {
47 struct {
48 struct {
49 int winsize;
50 } in, out;
51 } deflate;
19 *
20 * TODO:
21 */
22
23#define CCP_MAXCODE CODE_RESETACK
24
25#define TY_OUI 0 /* OUI */
26#define TY_PRED1 1 /* Predictor type 1 */

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

44struct link;
45
46struct ccp_config {
47 struct {
48 struct {
49 int winsize;
50 } in, out;
51 } deflate;
52 u_int fsmretry; /* FSM retry frequency */
52 struct fsm_retry fsm; /* How often/frequently to resend requests */
53 unsigned neg[CCP_NEG_TOTAL];
54};
55
56struct ccp_opt {
57 struct ccp_opt *next;
58 int algorithm;
59 struct lcp_opt val;
60};

--- 68 unchanged lines hidden ---
53 unsigned neg[CCP_NEG_TOTAL];
54};
55
56struct ccp_opt {
57 struct ccp_opt *next;
58 int algorithm;
59 struct lcp_opt val;
60};

--- 68 unchanged lines hidden ---