IGMP: proxy device
[vpp.git] / src / plugins / igmp / igmp_format.h
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #ifndef _IGMP_FORMAT_H_
19 #define _IGMP_FORMAT_H_
20
21 extern u8 *format_igmp_type (u8 * s, va_list * args);
22
23 extern u8 *format_igmp_membership_group_type (u8 * s, va_list * args);
24
25 extern u8 *format_igmp_header (u8 * s, va_list * args);
26
27 extern u8 *format_igmp_report_v3 (u8 * s, va_list * args);
28
29 extern u8 *format_igmp_query_v3 (u8 * s, va_list * args);
30
31 extern u8 *format_igmp_filter_mode (u8 * s, va_list * args);
32
33 extern u8 *format_igmp_mode (u8 * s, va_list * args);
34
35 extern u8 *format_igmp_src_addr_list (u8 * s, va_list * args);
36
37 extern u8 *format_igmp_key (u8 * s, va_list * args);
38
39 extern u8 *format_igmp_proxy_device_id (u8 * s, va_list * args);
40
41 #endif /* IGMP_FORMAT_H */
42
43 /*
44  * fd.io coding-style-patch-verification: ON
45  *
46  * Local Variables:
47  * eval: (c-set-style "gnu")
48  * End:
49  */