1 |
27 |
unneback |
//==========================================================================
|
2 |
|
|
//
|
3 |
|
|
// include/netinet/pim6.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.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 |
|
|
|
63 |
|
|
#ifndef _NETINET_PIM6_H_
|
64 |
|
|
#define _NETINET_PIM6_H_
|
65 |
|
|
|
66 |
|
|
/*
|
67 |
|
|
* Protocol Independent Multicast (PIM) definitions
|
68 |
|
|
*
|
69 |
|
|
* Written by Ahmed Helmy, SGI, July 1996
|
70 |
|
|
*
|
71 |
|
|
* MULTICAST
|
72 |
|
|
*/
|
73 |
|
|
|
74 |
|
|
/*
|
75 |
|
|
* PIM packet header
|
76 |
|
|
*/
|
77 |
|
|
#define PIM_VERSION 2
|
78 |
|
|
struct pim {
|
79 |
|
|
#if defined(BYTE_ORDER) && (BYTE_ORDER == LITTLE_ENDIAN)
|
80 |
|
|
u_char pim_type:4, /* the PIM message type, currently they are:
|
81 |
|
|
* Hello, Register, Register-Stop, Join/Prune,
|
82 |
|
|
* Bootstrap, Assert, Graft (PIM-DM only),
|
83 |
|
|
* Graft-Ack (PIM-DM only), C-RP-Adv
|
84 |
|
|
*/
|
85 |
|
|
pim_ver:4; /* PIM version number; 2 for PIMv2 */
|
86 |
|
|
#else
|
87 |
|
|
u_char pim_ver:4, /* PIM version */
|
88 |
|
|
pim_type:4; /* PIM type */
|
89 |
|
|
#endif
|
90 |
|
|
u_char pim_rsv; /* Reserved */
|
91 |
|
|
u_short pim_cksum; /* IP style check sum */
|
92 |
|
|
};
|
93 |
|
|
|
94 |
|
|
#define PIM_MINLEN 8 /* The header min. length is 8 */
|
95 |
|
|
#define PIM6_REG_MINLEN (PIM_MINLEN+40) /* Register message + inner IP6 header */
|
96 |
|
|
|
97 |
|
|
/*
|
98 |
|
|
* Message types
|
99 |
|
|
*/
|
100 |
|
|
#define PIM_REGISTER 1 /* PIM Register type is 1 */
|
101 |
|
|
|
102 |
|
|
/* second bit in reg_head is the null bit */
|
103 |
|
|
#define PIM_NULL_REGISTER 0x40000000
|
104 |
|
|
|
105 |
|
|
#endif // _NETINET_PIM6_H_
|