]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/net/tcpip/v2_0/include/netinet6/pim6_var.h
Initial revision
[karo-tx-redboot.git] / packages / net / tcpip / v2_0 / include / netinet6 / pim6_var.h
1 //==========================================================================
2 //
3 //      include/netinet/pim6_var.h
4 //
5 //      IPv6 protocol independent multicast
6 //
7 //==========================================================================
8 //####BSDCOPYRIGHTBEGIN####
9 //
10 // -------------------------------------------
11 //
12 // Portions of this software may have been derived from OpenBSD or other sources,
13 // and are covered by the appropriate copyright disclaimers included herein.
14 //
15 // -------------------------------------------
16 //
17 //####BSDCOPYRIGHTEND####
18 //==========================================================================
19 //#####DESCRIPTIONBEGIN####
20 //
21 // Author(s):    gthomas
22 // Contributors: gthomas
23 // Date:         2000-01-10
24 // Purpose:      
25 // Description:  
26 //              
27 //
28 //####DESCRIPTIONEND####
29 //
30 //==========================================================================
31
32 /*      $OpenBSD: pim6_var.h,v 1.1 1999/12/08 06:50:23 itojun Exp $     */
33
34 /*
35  * Copyright (C) 1998 WIDE Project.
36  * All rights reserved.
37  * 
38  * Redistribution and use in source and binary forms, with or without
39  * modification, are permitted provided that the following conditions
40  * are met:
41  * 1. Redistributions of source code must retain the above copyright
42  *    notice, this list of conditions and the following disclaimer.
43  * 2. Redistributions in binary form must reproduce the above copyright
44  *    notice, this list of conditions and the following disclaimer in the
45  *    documentation and/or other materials provided with the distribution.
46  * 3. Neither the name of the project nor the names of its contributors
47  *    may be used to endorse or promote products derived from this software
48  *    without specific prior written permission.
49  * 
50  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
51  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
54  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60  * SUCH DAMAGE.
61  */
62 /* KAME Id: pim6_var.h,v 1.2 1999/08/01 15:58:13 itojun Exp */
63
64 #ifndef _NETINET6_PIM6_VAR_H_
65 #define _NETINET6_PIM6_VAR_H_
66
67 /*
68  * Protocol Independent Multicast (PIM),
69  * implementation-specific definitions.
70  *
71  * Written by George Edmond Eddy (Rusty), ISI, February 1998
72  * Modified by Pavlin Ivanov Radoslavov, USC/ISI, May 1998
73  */
74
75 struct pim6stat {
76         u_quad_t pim6s_rcv_total;       /* total PIM messages received  */
77         u_quad_t pim6s_rcv_tooshort;    /* received with too few bytes  */
78         u_quad_t pim6s_rcv_badsum;      /* received with bad checksum   */
79         u_quad_t pim6s_rcv_badversion;  /* received bad PIM version     */
80         u_quad_t pim6s_rcv_registers;   /* received registers           */
81         u_quad_t pim6s_rcv_badregisters; /* received invalid registers  */
82         u_quad_t pim6s_snd_registers;   /* sent registers               */
83 };
84
85 #if (defined(KERNEL)) || (defined(_KERNEL))
86 extern struct pim6stat pim6stat;
87
88 int pim6_input __P((struct mbuf **, int*, int));
89 #endif /* KERNEL */
90
91 /*
92  * Names for PIM sysctl objects
93  */
94 #define PIMCTL_STATS            1       /* statistics (read-only) */
95 #define PIMCTL_MAXID            2
96
97 #define PIMCTL_NAMES { \
98         { 0, 0 }, \
99         { 0, 0 }, \
100 }
101
102 #endif /* _NETINET6_PIM6_VAR_H_ */