Deleted Added
sdiff udiff text old ( 62607 ) new ( 78064 )
full compact
1/* $FreeBSD: head/usr.sbin/route6d/route6d.h 78064 2001-06-11 12:39:29Z ume $ */
2/* $KAME: route6d.h,v 1.4 2001/01/15 03:50:54 inoue Exp $ */
3
4/*
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:

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

37#define ROUTE6D_DUMP "/var/run/route6d_dump"
38#define ROUTE6D_PID "/var/run/route6d.pid"
39
40#define RIP6_VERSION 1
41
42#define RIP6_REQUEST 1
43#define RIP6_RESPONSE 2
44
45#define IFC_CHANGED 1
46
47struct netinfo6 {
48 struct in6_addr rip6_dest;
49 u_short rip6_tag;
50 u_char rip6_plen;
51 u_char rip6_metric;
52};
53
54struct rip6 {

--- 36 unchanged lines hidden ---