Deleted Added
full compact
bundle.h (37018) bundle.h (37191)
1/*-
2 * Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1998 Brian Somers <brian@Awfulhak.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $Id: bundle.h,v 1.7 1998/06/12 17:45:04 brian Exp $
26 * $Id: bundle.h,v 1.8 1998/06/16 19:40:25 brian Exp $
27 */
28
29#define PHASE_DEAD 0 /* Link is dead */
30#define PHASE_ESTABLISH 1 /* Establishing link */
31#define PHASE_AUTHENTICATE 2 /* Being authenticated */
32#define PHASE_NETWORK 3 /* We're alive ! */
33#define PHASE_TERMINATE 4 /* Terminating link */
34

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

72 u_int phase; /* Curent phase */
73
74 struct {
75 int all; /* Union of all physical::type's */
76 int open; /* Union of all open physical::type's */
77 } phys_type;
78
79 unsigned CleaningUp : 1; /* Going to exit.... */
27 */
28
29#define PHASE_DEAD 0 /* Link is dead */
30#define PHASE_ESTABLISH 1 /* Establishing link */
31#define PHASE_AUTHENTICATE 2 /* Being authenticated */
32#define PHASE_NETWORK 3 /* We're alive ! */
33#define PHASE_TERMINATE 4 /* Terminating link */
34

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

72 u_int phase; /* Curent phase */
73
74 struct {
75 int all; /* Union of all physical::type's */
76 int open; /* Union of all open physical::type's */
77 } phys_type;
78
79 unsigned CleaningUp : 1; /* Going to exit.... */
80 unsigned AliasEnabled : 1; /* Are we using libalias ? */
80
81 struct fsm_parent fsm; /* Our callback functions */
82 struct datalink *links; /* Our data links */
83
84 struct {
85 int idle_timeout; /* NCP Idle timeout value */
86 struct {
87 char name[50]; /* PAP/CHAP system name */

--- 86 unchanged lines hidden ---
81
82 struct fsm_parent fsm; /* Our callback functions */
83 struct datalink *links; /* Our data links */
84
85 struct {
86 int idle_timeout; /* NCP Idle timeout value */
87 struct {
88 char name[50]; /* PAP/CHAP system name */

--- 86 unchanged lines hidden ---