source: svn/trunk/newcon3bcm2_21bu/toolchain/mipsel-linux-uclibc/include/linux/igmp.h @ 52

Last change on this file since 52 was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 2.8 KB
Line 
1/*
2 *      Linux NET3:     Internet Group Management Protocol  [IGMP]
3 *
4 *      Authors:
5 *              Alan Cox <Alan.Cox@linux.org>
6 *
7 *      Extended to talk the BSD extended IGMP protocol of mrouted 3.6
8 *
9 *
10 *      This program is free software; you can redistribute it and/or
11 *      modify it under the terms of the GNU General Public License
12 *      as published by the Free Software Foundation; either version
13 *      2 of the License, or (at your option) any later version.
14 */
15
16#ifndef _LINUX_IGMP_H
17#define _LINUX_IGMP_H
18
19#include <asm/types.h>
20
21#include <endian.h>
22#include <byteswap.h>
23
24/*
25 *      IGMP protocol structures
26 */
27
28/*
29 *      Header in on cable format
30 */
31
32struct igmphdr
33{
34        __u8 type;
35        __u8 code;              /* For newer IGMP */
36        __u16 csum;
37        __u32 group;
38};
39
40/* V3 group record types [grec_type] */
41#define IGMPV3_MODE_IS_INCLUDE          1
42#define IGMPV3_MODE_IS_EXCLUDE          2
43#define IGMPV3_CHANGE_TO_INCLUDE        3
44#define IGMPV3_CHANGE_TO_EXCLUDE        4
45#define IGMPV3_ALLOW_NEW_SOURCES        5
46#define IGMPV3_BLOCK_OLD_SOURCES        6
47
48struct igmpv3_grec {
49        __u8    grec_type;
50        __u8    grec_auxwords;
51        __u16   grec_nsrcs;
52        __u32   grec_mca;
53        __u32   grec_src[0];
54};
55
56struct igmpv3_report {
57        __u8 type;
58        __u8 resv1;
59        __u16 csum;
60        __u16 resv2;
61        __u16 ngrec;
62        struct igmpv3_grec grec[0];
63};
64
65struct igmpv3_query {
66        __u8 type;
67        __u8 code;
68        __u16 csum;
69        __u32 group;
70#if defined(__LITTLE_ENDIAN)
71        __u8 qrv:3,
72             suppress:1,
73             resv:4;
74#elif defined(__BIG_ENDIAN)
75        __u8 resv:4,
76             suppress:1,
77             qrv:3;
78#else
79#error "Endian problem - this didn't happen"
80#endif
81        __u8 qqic;
82        __u16 nsrcs;
83        __u32 srcs[0];
84};
85
86#define IGMP_HOST_MEMBERSHIP_QUERY      0x11    /* From RFC1112 */
87#define IGMP_HOST_MEMBERSHIP_REPORT     0x12    /* Ditto */
88#define IGMP_DVMRP                      0x13    /* DVMRP routing */
89#define IGMP_PIM                        0x14    /* PIM routing */
90#define IGMP_TRACE                      0x15
91#define IGMPV2_HOST_MEMBERSHIP_REPORT   0x16    /* V2 version of 0x11 */
92#define IGMP_HOST_LEAVE_MESSAGE         0x17
93#define IGMPV3_HOST_MEMBERSHIP_REPORT   0x22    /* V3 version of 0x11 */
94
95#define IGMP_MTRACE_RESP                0x1e
96#define IGMP_MTRACE                     0x1f
97
98
99/*
100 *      Use the BSD names for these for compatibility
101 */
102
103#define IGMP_DELAYING_MEMBER            0x01
104#define IGMP_IDLE_MEMBER                0x02
105#define IGMP_LAZY_MEMBER                0x03
106#define IGMP_SLEEPING_MEMBER            0x04
107#define IGMP_AWAKENING_MEMBER           0x05
108
109#define IGMP_MINLEN                     8
110
111#define IGMP_MAX_HOST_REPORT_DELAY      10      /* max delay for response to */
112                                                /* query (in seconds)   */
113
114#define IGMP_TIMER_SCALE                10      /* denotes that the igmphdr->timer field */
115                                                /* specifies time in 10th of seconds     */
116
117#define IGMP_AGE_THRESHOLD              400     /* If this host don't hear any IGMP V1  */
118                                                /* message in this period of time,      */
119                                                /* revert to IGMP v2 router.            */
120
121#define IGMP_ALL_HOSTS          htonl(0xE0000001L)
122#define IGMP_ALL_ROUTER         htonl(0xE0000002L)
123#define IGMPV3_ALL_MCR          htonl(0xE0000016L)
124#define IGMP_LOCAL_GROUP        htonl(0xE0000000L)
125#define IGMP_LOCAL_GROUP_MASK   htonl(0xFFFFFF00L)
126
127#endif
Note: See TracBrowser for help on using the repository browser.