Deleted Added
full compact
rtsold.h (66776) rtsold.h (78064)
1/* $KAME: rtsold.h,v 1.9 2000/08/13 06:15:00 itojun Exp $ */
1/* $KAME: rtsold.h,v 1.11 2000/10/10 06:18:04 itojun Exp $ */
2
3/*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:

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

23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 *
2
3/*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:

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

23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 *
31 * $FreeBSD: head/usr.sbin/rtsold/rtsold.h 66776 2000-10-06 23:46:52Z kris $
31 * $FreeBSD: head/usr.sbin/rtsold/rtsold.h 78064 2001-06-11 12:39:29Z ume $
32 */
33
34struct ifinfo {
35 struct ifinfo *next; /* pointer to the next interface */
36
37 struct sockaddr_dl *sdl; /* link-layer address */
38 char ifname[IF_NAMESIZE]; /* interface name */
39 int active; /* interface status */

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

84extern void rtsol_input __P((int s));
85
86/* probe.c */
87extern int probe_init __P((void));
88extern void defrouter_probe __P((int ifindex));
89
90/* dump.c */
91extern void rtsold_dump_file __P((char *));
32 */
33
34struct ifinfo {
35 struct ifinfo *next; /* pointer to the next interface */
36
37 struct sockaddr_dl *sdl; /* link-layer address */
38 char ifname[IF_NAMESIZE]; /* interface name */
39 int active; /* interface status */

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

84extern void rtsol_input __P((int s));
85
86/* probe.c */
87extern int probe_init __P((void));
88extern void defrouter_probe __P((int ifindex));
89
90/* dump.c */
91extern void rtsold_dump_file __P((char *));
92
93/* rtsock.c */
94extern int rtsock_open __P((void));
95extern int rtsock_input __P((int));