nat: Final NAT44 EI/ED split patch
[vpp.git] / src / plugins / nat / lib / lib.c
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
16 #include <nat/lib/lib.h>
17
18 uword
19 unformat_nat_protocol (unformat_input_t *input, va_list *args)
20 {
21   u32 *r = va_arg (*args, u32 *);
22
23   if (0)
24     ;
25 #define _(N, i, n, s) else if (unformat (input, s)) *r = NAT_PROTOCOL_##N;
26   foreach_nat_protocol
27 #undef _
28     else return 0;
29   return 1;
30 }
31
32 u8 *
33 format_nat_protocol (u8 *s, va_list *args)
34 {
35   u32 i = va_arg (*args, u32);
36   u8 *t = 0;
37
38   switch (i)
39     {
40 #define _(N, j, n, str)                                                       \
41   case NAT_PROTOCOL_##N:                                                      \
42     t = (u8 *) str;                                                           \
43     break;
44       foreach_nat_protocol
45 #undef _
46         default : s = format (s, "unknown");
47       return s;
48     }
49   s = format (s, "%s", t);
50   return s;
51 }
52
53 /*
54  * fd.io coding-style-patch-verification: ON
55  *
56  * Local Variables:
57  * eval: (c-set-style "gnu")
58  * End:
59  */