1 /**
2  * @file
3  * @brief IGMP definitions
4  * This is not to be included by the application.
5  */
6 
7 /*
8  * Copyright (c) 2024 Basalte bv
9  *
10  * SPDX-License-Identifier: Apache-2.0
11  */
12 
13 #ifndef __IGMP_H
14 #define __IGMP_H
15 
16 #define IGMPV3_MODE_IS_INCLUDE        0x01
17 #define IGMPV3_MODE_IS_EXCLUDE        0x02
18 #define IGMPV3_CHANGE_TO_INCLUDE_MODE 0x03
19 #define IGMPV3_CHANGE_TO_EXCLUDE_MODE 0x04
20 #define IGMPV3_ALLOW_NEW_SOURCES      0x05
21 #define IGMPV3_BLOCK_OLD_SOURCES      0x06
22 
23 #endif /* __IGMP_H */
24