19636c546a879f2a6d9a7835175d113b887136fd
[vpp.git] / src / plugins / linux-cp / lcp.h
1 /*
2  * Copyright (c) 2020 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __LCP_H__
16 #define __LCP_H__
17
18 #include <vlib/vlib.h>
19
20 #define LCP_NS_LEN 32
21
22 typedef struct lcp_main_s
23 {
24   u16 msg_id_base;                  /* API message ID base */
25   u8 *default_namespace;            /* default namespace if set */
26   int default_ns_fd;
27   /* Set when Unit testing */
28   u8 test_mode;
29 } lcp_main_t;
30
31 extern lcp_main_t lcp_main;
32
33 /**
34  * Get/Set the default namespace for LCP host taps.
35  */
36 int lcp_set_default_ns (u8 *ns);
37 u8 *lcp_get_default_ns (void); /* Returns NULL or shared string */
38 int lcp_get_default_ns_fd (void);
39
40 #endif
41
42 /*
43  * fd.io coding-style-patch-verification: ON
44  *
45  * Local Variables:
46  * eval: (c-set-style "gnu")
47  * End:
48  */