mss_clamp: TCP MSS clamping plugin
[vpp.git] / src / plugins / mss_clamp / mss_clamp.h
1 /*
2  * mss_clamp.h - TCP MSS clamping plug-in header file
3  *
4  * Copyright (c) 2018 Cisco and/or its affiliates
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #ifndef __included_mss_clamp_h__
19 #define __included_mss_clamp_h__
20
21 #include <stdbool.h> /* for bool in .api */
22 #include <vnet/vnet.h>
23
24 extern int mssc_enable_disable (u32 sw_if_index, u8 dir4, u8 dir6, u16 mss4,
25                                 u16 mss6);
26 extern int mssc_get_mss (u32 sw_if_index, u8 *dir4, u8 *dir6, u16 *mss4,
27                          u16 *mss6);
28
29 typedef struct
30 {
31   /* Maximum segment size per interface for IPv4/IPv6 */
32   u16 *max_mss4;
33   u16 *max_mss6;
34
35   /* Direction the feature is enabled for IPv4/IPv6 (rx, tx, both) */
36   u8 *dir_enabled4;
37   u8 *dir_enabled6;
38
39   /* API message ID base */
40   u16 msg_id_base;
41 } mssc_main_t;
42
43 extern mssc_main_t mssc_main;
44
45 #define MSS_CLAMP_UNSET 0xffff
46
47 #endif /* __included_mss_clamp_h__ */
48
49 /*
50  * fd.io coding-style-patch-verification: ON
51  *
52  * Local Variables:
53  * eval: (c-set-style "gnu")
54  * End:
55  */