NAT44: client-IP based session affinity for load-balancing (VPP-1297)
[vpp.git] / src / plugins / nat / CMakeLists.txt
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 add_vpp_plugin(nat
15   SOURCES
16   nat.c
17   nat_api.c
18   in2out.c
19   out2in.c
20   nat_ipfix_logging.c
21   nat_det.c
22   nat_reass.c
23   nat_dpo.c
24   nat44_cli.c
25   nat64.c
26   nat64_cli.c
27   nat64_in2out.c
28   nat64_out2in.c
29   nat64_db.c
30   dslite_dpo.c
31   dslite.c
32   dslite_in2out.c
33   dslite_out2in.c
34   dslite_cli.c
35   dslite_ce_encap.c
36   dslite_ce_decap.c
37   nat66.c
38   nat66_cli.c
39   nat66_in2out.c
40   nat66_out2in.c
41   nat_affinity.c
42
43   API_FILES
44   nat.api
45
46   API_TEST_SOURCES
47   nat_test.c
48
49   INSTALL_HEADERS
50   nat_all_api_h.h
51   nat_msg_enum.h
52 )