Dave Barach | ac0326f | 2020-07-14 18:30:05 -0400 | [diff] [blame] | 1 | # Copyright (c) 2018-2020 Cisco and/or its affiliates. |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 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 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 14 | unset(VNET_SOURCES) |
| 15 | unset(VNET_HEADERS) |
| 16 | unset(VNET_API_FILES) |
| 17 | unset(VNET_MULTIARCH_SOURCES) |
| 18 | |
Neale Ranns | a70b015 | 2021-08-10 14:37:11 +0000 | [diff] [blame] | 19 | option(VPP_IP_FIB_MTRIE_16 "IP FIB's MTRIE Stride is 16-8-8 (if not set it's 8-8-8-8)" ON) |
| 20 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 21 | ############################################################################## |
| 22 | # Generic stuff |
| 23 | ############################################################################## |
| 24 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 25 | buffer.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 26 | config.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 27 | devices/devices.c |
| 28 | devices/netlink.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 29 | flow/flow.c |
| 30 | flow/flow_cli.c |
Chenmin Sun | d0236f7 | 2020-07-27 17:54:40 +0800 | [diff] [blame] | 31 | flow/flow_api.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 32 | handoff.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 33 | interface.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 34 | interface_api.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 35 | interface_cli.c |
| 36 | interface_format.c |
| 37 | interface_output.c |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 38 | interface/rx_queue.c |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 39 | interface/tx_queue.c |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 40 | interface/runtime.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 41 | interface_stats.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 42 | misc.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 43 | ) |
| 44 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 45 | list(APPEND VNET_MULTIARCH_SOURCES |
| 46 | interface_output.c |
| 47 | interface_stats.c |
Filip Tehlar | c3a0e8d | 2019-03-11 05:53:35 -0700 | [diff] [blame] | 48 | handoff.c |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 49 | ) |
| 50 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 51 | list(APPEND VNET_HEADERS |
| 52 | api_errno.h |
| 53 | buffer.h |
| 54 | config.h |
| 55 | devices/devices.h |
| 56 | devices/netlink.h |
| 57 | flow/flow.h |
| 58 | global_funcs.h |
| 59 | handoff.h |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 60 | interface/rx_queue_funcs.h |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame] | 61 | interface/tx_queue_funcs.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 62 | interface.h |
| 63 | interface_funcs.h |
Dave Barach | 1bd2c01 | 2020-04-12 08:31:39 -0400 | [diff] [blame] | 64 | interface_output.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 65 | ip/ip4_to_ip6.h |
| 66 | ip/ip6_to_ip4.h |
Benoît Ganne | 09267f7 | 2019-05-17 14:24:17 +0200 | [diff] [blame] | 67 | ip/ip_types_api.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 68 | l3_types.h |
| 69 | plugin/plugin.h |
| 70 | pipeline.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 71 | vnet.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 72 | util/radix.h |
| 73 | util/refcount.h |
IJsbrand Wijnands | 724c805 | 2020-03-05 11:29:23 -0800 | [diff] [blame] | 74 | format_fns.h |
| 75 | ip/ip_format_fns.h |
Ole Troan | 8034a36 | 2021-08-11 13:54:14 +0200 | [diff] [blame^] | 76 | ip/ip_sas.h |
IJsbrand Wijnands | 724c805 | 2020-03-05 11:29:23 -0800 | [diff] [blame] | 77 | ethernet/ethernet_format_fns.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 78 | ) |
| 79 | |
Benoît Ganne | 09267f7 | 2019-05-17 14:24:17 +0200 | [diff] [blame] | 80 | list(APPEND VNET_API_FILES |
| 81 | interface.api |
Benoît Ganne | d39495d | 2019-07-25 14:14:03 +0200 | [diff] [blame] | 82 | interface_types.api |
Benoît Ganne | 09267f7 | 2019-05-17 14:24:17 +0200 | [diff] [blame] | 83 | ip/ip_types.api |
Chenmin Sun | d0236f7 | 2020-07-27 17:54:40 +0800 | [diff] [blame] | 84 | flow/flow_types.api |
| 85 | flow/flow.api |
Benoît Ganne | 09267f7 | 2019-05-17 14:24:17 +0200 | [diff] [blame] | 86 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 87 | |
| 88 | ############################################################################## |
| 89 | # Policer infra |
| 90 | ############################################################################## |
| 91 | list(APPEND VNET_SOURCES |
| 92 | policer/node_funcs.c |
| 93 | policer/policer.c |
| 94 | policer/xlate.c |
| 95 | policer/policer_api.c |
| 96 | ) |
| 97 | |
Filip Tehlar | 30d9348 | 2019-03-06 04:28:32 -0800 | [diff] [blame] | 98 | list(APPEND VNET_MULTIARCH_SOURCES |
| 99 | policer/node_funcs.c |
| 100 | ) |
| 101 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 102 | list(APPEND VNET_HEADERS |
| 103 | policer/police.h |
| 104 | policer/policer.h |
| 105 | policer/xlate.h |
| 106 | ) |
| 107 | |
Jakub Grajciar | cd01fb4 | 2020-03-02 13:16:53 +0100 | [diff] [blame] | 108 | list(APPEND VNET_API_FILES |
| 109 | policer/policer.api |
| 110 | policer/policer_types.api |
| 111 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 112 | |
| 113 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 114 | # Layer 2 protocols go here |
| 115 | ############################################################################## |
| 116 | |
| 117 | ############################################################################## |
| 118 | # Layer 2 protocol: Ethernet |
| 119 | ############################################################################## |
| 120 | list(APPEND VNET_SOURCES |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 121 | ethernet/arp_packet.c |
Neale Ranns | de5b08f | 2018-08-29 06:37:18 -0700 | [diff] [blame] | 122 | ethernet/ethernet_types_api.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 123 | ethernet/format.c |
| 124 | ethernet/init.c |
| 125 | ethernet/interface.c |
Neale Ranns | de5b08f | 2018-08-29 06:37:18 -0700 | [diff] [blame] | 126 | ethernet/mac_address.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 127 | ethernet/node.c |
| 128 | ethernet/pg.c |
| 129 | ethernet/sfp.c |
| 130 | ethernet/p2p_ethernet.c |
| 131 | ethernet/p2p_ethernet_input.c |
| 132 | ethernet/p2p_ethernet_api.c |
| 133 | ) |
| 134 | |
Filip Tehlar | c3a0e8d | 2019-03-11 05:53:35 -0700 | [diff] [blame] | 135 | list(APPEND VNET_MULTIARCH_SOURCES |
| 136 | ethernet/node.c |
| 137 | ethernet/p2p_ethernet_input.c |
| 138 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 139 | |
| 140 | list(APPEND VNET_HEADERS |
| 141 | ethernet/error.def |
| 142 | ethernet/ethernet.h |
Jon Loeliger | 330bf93 | 2018-11-28 13:51:42 -0600 | [diff] [blame] | 143 | ethernet/mac_address.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 144 | ethernet/packet.h |
| 145 | ethernet/types.def |
| 146 | ethernet/sfp.h |
| 147 | ethernet/p2p_ethernet.h |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 148 | ethernet/arp_packet.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 149 | ) |
| 150 | |
Benoît Ganne | d39495d | 2019-07-25 14:14:03 +0200 | [diff] [blame] | 151 | list(APPEND VNET_API_FILES |
| 152 | ethernet/p2p_ethernet.api |
| 153 | ethernet/ethernet_types.api) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 154 | |
| 155 | ############################################################################## |
| 156 | # Layer 2 protocol: Ethernet bridging |
| 157 | ############################################################################## |
| 158 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 159 | l2/feat_bitmap.c |
| 160 | l2/l2_api.c |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 161 | l2/l2_arp_term.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 162 | l2/l2_bd.c |
| 163 | l2/l2_bvi.c |
Neale Ranns | 192b13f | 2019-03-15 02:16:20 -0700 | [diff] [blame] | 164 | l2/l2_bvi_node.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 165 | l2/l2_input_classify.c |
| 166 | l2/l2_output_classify.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 167 | l2/l2_efp_filter.c |
| 168 | l2/l2_fib.c |
| 169 | l2/l2_flood.c |
| 170 | l2/l2_fwd.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 171 | l2/l2_input.c |
Neale Ranns | 47a3d99 | 2020-09-29 15:38:51 +0000 | [diff] [blame] | 172 | l2/l2_input_node.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 173 | l2/l2_input_vtr.c |
| 174 | l2/l2_learn.c |
| 175 | l2/l2_output.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 176 | l2/l2_in_out_acl.c |
Andrew Yourtchenko | a23cade | 2018-10-06 09:18:00 +0200 | [diff] [blame] | 177 | l2/l2_in_out_feat_arc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 178 | l2/l2_patch.c |
| 179 | l2/l2_rw.c |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame] | 180 | l2/l2_uu_fwd.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 181 | l2/l2_vtr.c |
| 182 | l2/l2_xcrw.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 183 | ) |
| 184 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 185 | list(APPEND VNET_MULTIARCH_SOURCES |
Neale Ranns | 192b13f | 2019-03-15 02:16:20 -0700 | [diff] [blame] | 186 | l2/l2_bvi_node.c |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 187 | l2/l2_fwd.c |
| 188 | l2/l2_learn.c |
| 189 | l2/l2_output.c |
Damjan Marion | c3baf62 | 2018-11-06 13:33:27 +0100 | [diff] [blame] | 190 | l2/l2_patch.c |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 191 | l2/l2_in_out_feat_arc.c |
| 192 | l2/l2_input_classify.c |
Neale Ranns | 47a3d99 | 2020-09-29 15:38:51 +0000 | [diff] [blame] | 193 | l2/l2_input_node.c |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 194 | l2/l2_output_classify.c |
| 195 | l2/l2_flood.c |
| 196 | l2/l2_uu_fwd.c |
| 197 | l2/l2_efp_filter.c |
| 198 | l2/l2_rw.c |
| 199 | l2/l2_xcrw.c |
| 200 | l2/l2_in_out_acl.c |
| 201 | l2/l2_input_vtr.c |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 202 | ) |
Neale Ranns | eb1525f | 2018-09-09 04:41:02 -0400 | [diff] [blame] | 203 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 204 | list(APPEND VNET_HEADERS |
| 205 | l2/feat_bitmap.h |
| 206 | l2/l2_input.h |
| 207 | l2/l2_output.h |
| 208 | l2/l2_vtr.h |
| 209 | l2/l2_input_vtr.h |
| 210 | l2/l2_efp_filter.h |
| 211 | l2/l2_fwd.h |
| 212 | l2/l2_bd.h |
| 213 | l2/l2_bvi.h |
| 214 | l2/l2_flood.h |
| 215 | l2/l2_fib.h |
| 216 | l2/l2_rw.h |
| 217 | l2/l2_xcrw.h |
| 218 | l2/l2_classify.h |
| 219 | ) |
| 220 | |
| 221 | list(APPEND VNET_API_FILES l2/l2.api) |
| 222 | |
| 223 | ############################################################################## |
| 224 | # Layer 2 protocol: SRP |
| 225 | ############################################################################## |
| 226 | list(APPEND VNET_SOURCES |
| 227 | srp/format.c |
| 228 | srp/interface.c |
| 229 | srp/node.c |
| 230 | srp/pg.c |
| 231 | ) |
| 232 | |
| 233 | list(APPEND VNET_HEADERS |
| 234 | srp/packet.h |
| 235 | srp/srp.h |
| 236 | ) |
| 237 | |
| 238 | ############################################################################## |
| 239 | # Layer 2 protocol: PPP |
| 240 | ############################################################################## |
| 241 | list(APPEND VNET_SOURCES |
| 242 | ppp/node.c |
| 243 | ppp/pg.c |
| 244 | ppp/ppp.c |
| 245 | ) |
| 246 | |
| 247 | list(APPEND VNET_HEADERS |
| 248 | ppp/error.def |
| 249 | ppp/ppp.h |
| 250 | ppp/packet.h |
| 251 | ) |
| 252 | |
| 253 | ############################################################################## |
| 254 | # Layer 2 protocol: HDLC |
| 255 | ############################################################################## |
| 256 | list(APPEND VNET_SOURCES |
| 257 | hdlc/node.c |
| 258 | hdlc/pg.c |
| 259 | hdlc/hdlc.c |
| 260 | ) |
| 261 | |
| 262 | list(APPEND VNET_HEADERS |
| 263 | hdlc/error.def |
| 264 | hdlc/hdlc.h |
| 265 | hdlc/packet.h |
| 266 | ) |
| 267 | |
| 268 | ############################################################################## |
| 269 | # Layer 2 protocol: LLC |
| 270 | ############################################################################## |
| 271 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 272 | llc/llc.c |
| 273 | llc/node.c |
| 274 | llc/pg.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 275 | ) |
| 276 | |
| 277 | list(APPEND VNET_HEADERS |
| 278 | llc/llc.h |
| 279 | ) |
| 280 | |
| 281 | ############################################################################## |
| 282 | # Layer 2 protocol: SNAP |
| 283 | ############################################################################## |
| 284 | list(APPEND VNET_SOURCES |
| 285 | snap/snap.c |
| 286 | snap/node.c |
| 287 | snap/pg.c |
| 288 | ) |
| 289 | |
| 290 | list(APPEND VNET_HEADERS |
| 291 | snap/snap.h |
| 292 | ) |
| 293 | |
| 294 | ############################################################################## |
| 295 | # Layer 2 / vxlan |
| 296 | ############################################################################## |
| 297 | list(APPEND VNET_SOURCES |
| 298 | vxlan/vxlan.c |
| 299 | vxlan/encap.c |
| 300 | vxlan/decap.c |
| 301 | vxlan/vxlan_api.c |
| 302 | ) |
| 303 | |
Filip Tehlar | e1714d3 | 2019-03-05 03:01:43 -0800 | [diff] [blame] | 304 | list(APPEND VNET_MULTIARCH_SOURCES |
| 305 | vxlan/encap.c |
| 306 | ) |
| 307 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 308 | list(APPEND VNET_HEADERS |
| 309 | vxlan/vxlan.h |
| 310 | vxlan/vxlan_packet.h |
| 311 | vxlan/vxlan_error.def |
| 312 | ) |
| 313 | |
Eyal Bari | a5679e8 | 2018-08-26 15:20:07 +0300 | [diff] [blame] | 314 | list(APPEND VNET_MULTIARCH_SOURCES vxlan/decap.c) |
| 315 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 316 | list(APPEND VNET_API_FILES vxlan/vxlan.api) |
| 317 | |
| 318 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 319 | # Layer 2 / Bonding |
| 320 | ############################################################################## |
| 321 | list(APPEND VNET_SOURCES |
| 322 | bonding/cli.c |
| 323 | bonding/node.c |
| 324 | bonding/device.c |
| 325 | bonding/bond_api.c |
| 326 | ) |
| 327 | |
| 328 | list(APPEND VNET_HEADERS |
| 329 | bonding/node.h |
| 330 | ) |
| 331 | |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 332 | list(APPEND VNET_MULTIARCH_SOURCES bonding/node.c bonding/device.c) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 333 | list(APPEND VNET_API_FILES bonding/bond.api) |
| 334 | |
| 335 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 336 | # Layer 2/3 "classify" |
| 337 | ############################################################################## |
| 338 | list(APPEND VNET_SOURCES |
| 339 | classify/vnet_classify.c |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 340 | classify/trace_classify.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 341 | classify/ip_classify.c |
| 342 | classify/in_out_acl.c |
| 343 | classify/policer_classify.c |
| 344 | classify/flow_classify.c |
| 345 | classify/flow_classify_node.c |
| 346 | classify/vnet_classify.h |
| 347 | classify/classify_api.c |
| 348 | ) |
| 349 | |
Filip Tehlar | e8cb521 | 2019-03-06 04:50:34 -0800 | [diff] [blame] | 350 | list(APPEND VNET_MULTIARCH_SOURCES |
| 351 | classify/ip_classify.c |
| 352 | classify/flow_classify_node.c |
| 353 | ) |
| 354 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 355 | list(APPEND VNET_HEADERS |
| 356 | classify/vnet_classify.h |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 357 | classify/trace_classify.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 358 | classify/in_out_acl.h |
| 359 | classify/policer_classify.h |
| 360 | classify/flow_classify.h |
| 361 | ) |
| 362 | |
| 363 | list(APPEND VNET_API_FILES classify/classify.api) |
| 364 | |
| 365 | ############################################################################## |
| 366 | # Layer 3 protocols go here |
| 367 | ############################################################################## |
| 368 | |
| 369 | ############################################################################## |
| 370 | # Layer 3 protocol: IP v4/v6 |
| 371 | ############################################################################## |
| 372 | list(APPEND VNET_SOURCES |
| 373 | ip/format.c |
| 374 | ip/icmp4.c |
| 375 | ip/icmp6.c |
| 376 | ip/ip46_cli.c |
| 377 | ip/ip_types_api.c |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 378 | ip/ip46_address.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 379 | ip/ip4_format.c |
| 380 | ip/ip4_forward.c |
| 381 | ip/ip4_punt_drop.c |
| 382 | ip/ip4_input.c |
| 383 | ip/ip4_options.c |
| 384 | ip/ip4_mtrie.c |
| 385 | ip/ip4_pg.c |
| 386 | ip/ip4_source_and_port_range_check.c |
Klement Sekera | 896c896 | 2019-06-24 11:52:49 +0000 | [diff] [blame] | 387 | ip/reass/ip4_full_reass.c |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 388 | ip/reass/ip4_sv_reass.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 389 | ip/ip6_format.c |
| 390 | ip/ip6_forward.c |
| 391 | ip/ip6_ll_table.c |
| 392 | ip/ip6_ll_types.c |
| 393 | ip/ip6_punt_drop.c |
| 394 | ip/ip6_hop_by_hop.c |
| 395 | ip/ip6_input.c |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 396 | ip/ip6_link.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 397 | ip/ip6_pg.c |
Klement Sekera | 896c896 | 2019-06-24 11:52:49 +0000 | [diff] [blame] | 398 | ip/reass/ip6_full_reass.c |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 399 | ip/reass/ip6_sv_reass.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 400 | ip/ip_api.c |
| 401 | ip/ip_checksum.c |
Neale Ranns | e403113 | 2020-10-26 13:00:06 +0000 | [diff] [blame] | 402 | ip/ip_container_proxy.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 403 | ip/ip_frag.c |
| 404 | ip/ip.c |
Neale Ranns | 59f7113 | 2020-04-08 12:19:38 +0000 | [diff] [blame] | 405 | ip/ip_interface.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 406 | ip/ip_init.c |
| 407 | ip/ip_in_out_acl.c |
Neale Ranns | 8f5fef2 | 2020-12-21 08:29:34 +0000 | [diff] [blame] | 408 | ip/ip_path_mtu.c |
| 409 | ip/ip_path_mtu_node.c |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 410 | ip/ip_punt_drop.c |
Neale Ranns | ea93e48 | 2019-11-12 17:16:47 +0000 | [diff] [blame] | 411 | ip/ip_types.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 412 | ip/lookup.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 413 | ip/punt_api.c |
| 414 | ip/punt.c |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 415 | ip/punt_node.c |
Nick Zavaritsky | 27518c2 | 2020-02-27 15:54:58 +0000 | [diff] [blame] | 416 | ip/vtep.c |
Ole Troan | 8034a36 | 2021-08-11 13:54:14 +0200 | [diff] [blame^] | 417 | ip/ip_sas.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 418 | ) |
| 419 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 420 | list(APPEND VNET_MULTIARCH_SOURCES |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 421 | ip/ip4_punt_drop.c |
Klement Sekera | 896c896 | 2019-06-24 11:52:49 +0000 | [diff] [blame] | 422 | ip/reass/ip4_full_reass.c |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 423 | ip/ip6_hop_by_hop.c |
Klement Sekera | 896c896 | 2019-06-24 11:52:49 +0000 | [diff] [blame] | 424 | ip/reass/ip6_full_reass.c |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 425 | ip/reass/ip4_sv_reass.c |
| 426 | ip/ip6_hop_by_hop.c |
| 427 | ip/reass/ip6_full_reass.c |
| 428 | ip/reass/ip6_sv_reass.c |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 429 | ip/ip6_input.c |
| 430 | ip/ip6_punt_drop.c |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 431 | ip/punt_node.c |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 432 | ip/ip_in_out_acl.c |
Neale Ranns | 8f5fef2 | 2020-12-21 08:29:34 +0000 | [diff] [blame] | 433 | ip/ip_path_mtu_node.c |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 434 | ) |
| 435 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 436 | list(APPEND VNET_HEADERS |
| 437 | ip/format.h |
| 438 | ip/icmp46_packet.h |
| 439 | ip/icmp4.h |
| 440 | ip/icmp6.h |
| 441 | ip/igmp_packet.h |
| 442 | ip/ip4_error.h |
| 443 | ip/ip4.h |
| 444 | ip/ip4_mtrie.h |
Neale Ranns | e403113 | 2020-10-26 13:00:06 +0000 | [diff] [blame] | 445 | ip/ip4_inlines.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 446 | ip/ip4_packet.h |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 447 | ip/ip46_address.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 448 | ip/ip6_error.h |
| 449 | ip/ip6.h |
| 450 | ip/ip6_hop_by_hop.h |
| 451 | ip/ip6_hop_by_hop_packet.h |
Neale Ranns | e403113 | 2020-10-26 13:00:06 +0000 | [diff] [blame] | 452 | ip/ip6_inlines.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 453 | ip/ip6_packet.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 454 | ip/ip.h |
Neale Ranns | e403113 | 2020-10-26 13:00:06 +0000 | [diff] [blame] | 455 | ip/ip_container_proxy.h |
| 456 | ip/ip_flow_hash.h |
Steven Luong | c3ed1c9 | 2020-07-27 10:06:58 -0700 | [diff] [blame] | 457 | ip/ip_table.h |
Neale Ranns | 59f7113 | 2020-04-08 12:19:38 +0000 | [diff] [blame] | 458 | ip/ip_interface.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 459 | ip/ip_packet.h |
| 460 | ip/ip_source_and_port_range_check.h |
Neale Ranns | ea93e48 | 2019-11-12 17:16:47 +0000 | [diff] [blame] | 461 | ip/ip_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 462 | ip/lookup.h |
| 463 | ip/ports.def |
| 464 | ip/protocols.def |
| 465 | ip/punt_error.def |
| 466 | ip/punt.h |
| 467 | ) |
| 468 | |
| 469 | list(APPEND VNET_API_FILES |
| 470 | ip/ip.api |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 471 | ip/punt.api |
| 472 | ) |
| 473 | |
Damjan Marion | 3817350 | 2019-02-13 19:30:09 +0100 | [diff] [blame] | 474 | list(APPEND VNET_MULTIARCH_SOURCES |
| 475 | ip/ip4_forward.c |
| 476 | ip/ip6_forward.c |
| 477 | ip/ip4_input.c |
| 478 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 479 | |
| 480 | ############################################################################## |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 481 | # Layer 3 neighbours |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 482 | ############################################################################## |
| 483 | list(APPEND VNET_SOURCES |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 484 | ip-neighbor/ip_neighbor.c |
| 485 | ip-neighbor/ip_neighbor_api.c |
| 486 | ip-neighbor/ip_neighbor_dp.c |
| 487 | ip-neighbor/ip_neighbor_types.c |
| 488 | ip-neighbor/ip_neighbor_watch.c |
| 489 | ip-neighbor/ip4_neighbor.c |
| 490 | ip-neighbor/ip6_neighbor.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 491 | ) |
| 492 | |
| 493 | list(APPEND VNET_HEADERS |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 494 | ip-neighbor/ip_neighbor.h |
| 495 | ip-neighbor/ip_neighbor_types.h |
| 496 | ) |
| 497 | |
| 498 | list(APPEND VNET_API_FILES |
| 499 | ip-neighbor/ip_neighbor.api |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 500 | ) |
| 501 | |
| 502 | ############################################################################## |
| 503 | # Bidirectional Forwarding Detection |
| 504 | ############################################################################## |
| 505 | |
| 506 | list(APPEND VNET_HEADERS |
| 507 | bfd/bfd_protocol.h |
| 508 | bfd/bfd_main.h |
| 509 | bfd/bfd_api.h |
| 510 | bfd/bfd_udp.h |
| 511 | ) |
| 512 | |
| 513 | list(APPEND VNET_SOURCES |
| 514 | bfd/bfd_api.h |
| 515 | bfd/bfd_udp.c |
| 516 | bfd/bfd_main.c |
| 517 | bfd/bfd_protocol.c |
| 518 | bfd/bfd_cli.c |
| 519 | bfd/bfd_api.c |
| 520 | ) |
| 521 | |
| 522 | list(APPEND VNET_API_FILES bfd/bfd.api) |
| 523 | |
| 524 | ############################################################################## |
Damjan Marion | 91f17dc | 2019-03-18 18:59:25 +0100 | [diff] [blame] | 525 | # Crypto |
| 526 | ############################################################################## |
| 527 | |
| 528 | list(APPEND VNET_SOURCES |
| 529 | crypto/cli.c |
| 530 | crypto/crypto.c |
| 531 | crypto/format.c |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 532 | crypto/node.c |
Nathan Skrzypczak | 0c936b1 | 2020-08-31 15:33:57 +0200 | [diff] [blame] | 533 | crypto/crypto_api.c |
Damjan Marion | 91f17dc | 2019-03-18 18:59:25 +0100 | [diff] [blame] | 534 | ) |
| 535 | |
| 536 | list(APPEND VNET_HEADERS |
| 537 | crypto/crypto.h |
| 538 | ) |
| 539 | |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 540 | list(APPEND VNET_MULTIARCH_SOURCES crypto/node.c) |
| 541 | |
Nathan Skrzypczak | 0c936b1 | 2020-08-31 15:33:57 +0200 | [diff] [blame] | 542 | list(APPEND VNET_API_FILES crypto/crypto.api) |
| 543 | |
Damjan Marion | 91f17dc | 2019-03-18 18:59:25 +0100 | [diff] [blame] | 544 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 545 | # Layer 3 protocol: IPSec |
| 546 | ############################################################################## |
| 547 | list(APPEND VNET_SOURCES |
| 548 | ipsec/ipsec.c |
| 549 | ipsec/ipsec_cli.c |
| 550 | ipsec/ipsec_format.c |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 551 | ipsec/ipsec_handoff.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 552 | ipsec/ipsec_input.c |
Neale Ranns | dd4ccf2 | 2020-06-30 07:47:14 +0000 | [diff] [blame] | 553 | ipsec/ipsec_itf.c |
Neale Ranns | b71fa75 | 2019-04-04 12:43:36 +0000 | [diff] [blame] | 554 | ipsec/ipsec_punt.c |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 555 | ipsec/ipsec_sa.c |
| 556 | ipsec/ipsec_spd.c |
| 557 | ipsec/ipsec_spd_policy.c |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 558 | ipsec/ipsec_tun.c |
| 559 | ipsec/ipsec_tun_in.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 560 | ipsec/esp_format.c |
| 561 | ipsec/esp_encrypt.c |
| 562 | ipsec/esp_decrypt.c |
| 563 | ipsec/ah_decrypt.c |
| 564 | ipsec/ah_encrypt.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 565 | ipsec/ipsec_api.c |
Prashant Maheshwari | dbf68c9 | 2019-11-14 12:42:59 +0530 | [diff] [blame] | 566 | ipsec/ipsec_types_api.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 567 | ) |
| 568 | |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 569 | list(APPEND VNET_MULTIARCH_SOURCES |
| 570 | ipsec/esp_encrypt.c |
| 571 | ipsec/esp_decrypt.c |
| 572 | ipsec/ah_decrypt.c |
| 573 | ipsec/ah_encrypt.c |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 574 | ipsec/ipsec_handoff.c |
Kingwel Xie | c69ac31 | 2019-02-04 01:49:29 -0800 | [diff] [blame] | 575 | ipsec/ipsec_output.c |
| 576 | ipsec/ipsec_input.c |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 577 | ipsec/ipsec_tun_in.c |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 578 | ) |
| 579 | |
Prashant Maheshwari | dbf68c9 | 2019-11-14 12:42:59 +0530 | [diff] [blame] | 580 | list(APPEND VNET_API_FILES ipsec/ipsec_types.api) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 581 | list(APPEND VNET_API_FILES ipsec/ipsec.api) |
| 582 | |
| 583 | list(APPEND VNET_SOURCES |
| 584 | ipsec/ipsec_output.c |
| 585 | ) |
| 586 | |
| 587 | list(APPEND VNET_HEADERS |
| 588 | ipsec/ipsec.h |
Neale Ranns | 918c161 | 2019-02-21 23:34:59 -0800 | [diff] [blame] | 589 | ipsec/ipsec_spd.h |
| 590 | ipsec/ipsec_spd_policy.h |
| 591 | ipsec/ipsec_sa.h |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 592 | ipsec/ipsec_tun.h |
Prashant Maheshwari | dbf68c9 | 2019-11-14 12:42:59 +0530 | [diff] [blame] | 593 | ipsec/ipsec_types_api.h |
Neale Ranns | ba05e5d | 2019-06-07 05:17:07 -0700 | [diff] [blame] | 594 | ipsec/ipsec_punt.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 595 | ipsec/esp.h |
| 596 | ipsec/ah.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 597 | ) |
| 598 | |
| 599 | ############################################################################## |
| 600 | # Layer 3 protocol: osi |
| 601 | ############################################################################## |
| 602 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 603 | osi/node.c |
| 604 | osi/osi.c |
| 605 | osi/pg.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 606 | ) |
| 607 | |
| 608 | list(APPEND VNET_HEADERS |
| 609 | osi/osi.h |
| 610 | ) |
| 611 | |
| 612 | ############################################################################## |
| 613 | # Layer 4 protocol: tcp |
| 614 | ############################################################################## |
| 615 | list(APPEND VNET_SOURCES |
| 616 | tcp/tcp_api.c |
| 617 | tcp/tcp_format.c |
| 618 | tcp/tcp_pg.c |
| 619 | tcp/tcp_syn_filter4.c |
| 620 | tcp/tcp_output.c |
| 621 | tcp/tcp_input.c |
| 622 | tcp/tcp_newreno.c |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 623 | tcp/tcp_bt.c |
Florin Coras | 999840c | 2020-03-18 20:31:34 +0000 | [diff] [blame] | 624 | tcp/tcp_cli.c |
| 625 | tcp/tcp_cubic.c |
Florin Coras | a436a42 | 2019-08-20 07:09:31 -0700 | [diff] [blame] | 626 | tcp/tcp_debug.c |
Florin Coras | 999840c | 2020-03-18 20:31:34 +0000 | [diff] [blame] | 627 | tcp/tcp_sack.c |
Florin Coras | 49036a5 | 2020-10-08 09:28:32 -0700 | [diff] [blame] | 628 | tcp/tcp_timer.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 629 | tcp/tcp.c |
| 630 | ) |
| 631 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 632 | list(APPEND VNET_MULTIARCH_SOURCES |
| 633 | tcp/tcp_input.c |
| 634 | tcp/tcp_output.c |
| 635 | tcp/tcp_syn_filter4.c |
| 636 | ) |
| 637 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 638 | list(APPEND VNET_HEADERS |
| 639 | tcp/tcp_packet.h |
| 640 | tcp/tcp_timer.h |
Florin Coras | 999840c | 2020-03-18 20:31:34 +0000 | [diff] [blame] | 641 | tcp/tcp_bt.h |
| 642 | tcp/tcp_cc.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 643 | tcp/tcp_debug.h |
Florin Coras | 999840c | 2020-03-18 20:31:34 +0000 | [diff] [blame] | 644 | tcp/tcp_inlines.h |
| 645 | tcp/tcp_sack.h |
| 646 | tcp/tcp_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 647 | tcp/tcp.h |
| 648 | tcp/tcp_error.def |
| 649 | ) |
| 650 | |
| 651 | list(APPEND VNET_API_FILES tcp/tcp.api) |
| 652 | |
| 653 | ############################################################################## |
| 654 | # Layer 4 protocol: udp |
| 655 | ############################################################################## |
| 656 | list(APPEND VNET_SOURCES |
| 657 | udp/udp.c |
Florin Coras | c98ef75 | 2020-04-07 17:30:13 +0000 | [diff] [blame] | 658 | udp/udp_cli.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 659 | udp/udp_input.c |
| 660 | udp/udp_format.c |
| 661 | udp/udp_local.c |
| 662 | udp/udp_pg.c |
| 663 | udp/udp_encap_node.c |
| 664 | udp/udp_encap.c |
Arthur de Kerhor | 8a6f5d3 | 2021-05-20 11:48:00 +0200 | [diff] [blame] | 665 | udp/udp_decap.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 666 | udp/udp_api.c |
| 667 | ) |
| 668 | |
Filip Tehlar | 2c49ffe | 2019-03-06 07:16:08 -0800 | [diff] [blame] | 669 | list(APPEND VNET_MULTIARCH_SOURCES |
| 670 | udp/udp_local.c |
| 671 | udp/udp_encap_node.c |
| 672 | ) |
| 673 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 674 | list(APPEND VNET_HEADERS |
| 675 | udp/udp_error.def |
| 676 | udp/udp.h |
| 677 | udp/udp_packet.h |
Florin Coras | b040f98 | 2020-10-20 14:59:43 -0700 | [diff] [blame] | 678 | udp/udp_inlines.h |
| 679 | udp/udp_local.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 680 | ) |
| 681 | |
| 682 | list(APPEND VNET_API_FILES udp/udp.api) |
| 683 | |
| 684 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 685 | # Tunnel protocol: gre |
| 686 | ############################################################################## |
| 687 | list(APPEND VNET_SOURCES |
| 688 | gre/gre.c |
| 689 | gre/node.c |
| 690 | gre/interface.c |
| 691 | gre/pg.c |
| 692 | gre/gre_api.c |
| 693 | ) |
| 694 | |
Filip Tehlar | 0fce11f | 2019-03-04 09:21:59 -0800 | [diff] [blame] | 695 | list(APPEND VNET_MULTIARCH_SOURCES |
| 696 | gre/node.c |
| 697 | gre/gre.c |
| 698 | ) |
| 699 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 700 | list(APPEND VNET_HEADERS |
| 701 | gre/gre.h |
| 702 | gre/packet.h |
| 703 | gre/error.def |
| 704 | ) |
| 705 | |
| 706 | list(APPEND VNET_API_FILES gre/gre.api) |
| 707 | |
| 708 | ############################################################################## |
| 709 | # Tunnel protocol: ipip |
| 710 | ############################################################################## |
| 711 | list(APPEND VNET_SOURCES |
| 712 | ipip/ipip.c |
| 713 | ipip/node.c |
| 714 | ipip/sixrd.c |
| 715 | ipip/ipip_api.c |
| 716 | ipip/ipip_cli.c |
| 717 | ) |
| 718 | |
Filip Tehlar | 7a542f4 | 2019-03-05 04:50:23 -0800 | [diff] [blame] | 719 | list(APPEND VNET_MULTIARCH_SOURCES |
| 720 | ipip/node.c |
| 721 | ) |
| 722 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 723 | list(APPEND VNET_HEADERS |
| 724 | ipip/ipip.h |
| 725 | ) |
| 726 | |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 727 | list(APPEND VNET_API_FILES |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 728 | ipip/ipip.api |
| 729 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 730 | |
| 731 | ############################################################################## |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 732 | # Tunnel infra |
| 733 | ############################################################################## |
| 734 | list(APPEND VNET_SOURCES |
| 735 | tunnel/tunnel.c |
| 736 | tunnel/tunnel_types_api.c |
| 737 | ) |
| 738 | |
| 739 | list(APPEND VNET_API_FILES |
| 740 | tunnel/tunnel_types.api |
| 741 | ) |
| 742 | |
| 743 | list(APPEND VNET_HEADERS |
| 744 | tunnel/tunnel.h |
Neale Ranns | e5b94dd | 2019-12-31 05:13:14 +0000 | [diff] [blame] | 745 | tunnel/tunnel_dp.h |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 746 | ) |
| 747 | |
| 748 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 749 | # Tunnel protocol: gre+mpls |
| 750 | ############################################################################## |
| 751 | list(APPEND VNET_SOURCES |
| 752 | mpls/mpls.c |
| 753 | mpls/mpls_lookup.c |
| 754 | mpls/mpls_output.c |
| 755 | mpls/mpls_features.c |
| 756 | mpls/mpls_input.c |
| 757 | mpls/interface.c |
| 758 | mpls/mpls_tunnel.c |
| 759 | mpls/pg.c |
| 760 | mpls/mpls_api.c |
| 761 | ) |
| 762 | |
Filip Tehlar | 17fcd98 | 2019-03-05 04:32:11 -0800 | [diff] [blame] | 763 | list(APPEND VNET_MULTIARCH_SOURCES |
| 764 | mpls/mpls_output.c |
| 765 | mpls/mpls_input.c |
| 766 | mpls/mpls_lookup.c |
| 767 | mpls/mpls_features.c |
| 768 | ) |
| 769 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 770 | list(APPEND VNET_HEADERS |
| 771 | mpls/mpls.h |
| 772 | mpls/mpls_types.h |
| 773 | mpls/mpls_tunnel.h |
| 774 | mpls/packet.h |
| 775 | mpls/error.def |
| 776 | ) |
| 777 | |
| 778 | list(APPEND VNET_API_FILES mpls/mpls.api) |
| 779 | |
| 780 | ############################################################################## |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 781 | # Tunnel protocol: vxlan-gbp |
| 782 | ############################################################################## |
| 783 | list(APPEND VNET_SOURCES |
| 784 | vxlan-gbp/decap.c |
| 785 | vxlan-gbp/encap.c |
| 786 | vxlan-gbp/vxlan_gbp_api.c |
| 787 | vxlan-gbp/vxlan_gbp.c |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 788 | vxlan-gbp/vxlan_gbp_packet.c |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 789 | ) |
| 790 | |
Filip Tehlar | e1714d3 | 2019-03-05 03:01:43 -0800 | [diff] [blame] | 791 | list (APPEND VNET_MULTIARCH_SOURCES |
| 792 | vxlan-gbp/decap.c |
| 793 | vxlan-gbp/encap.c |
| 794 | ) |
| 795 | |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 796 | list(APPEND VNET_HEADERS |
| 797 | vxlan-gbp/vxlan_gbp.h |
| 798 | vxlan-gbp/vxlan_gbp_packet.h |
| 799 | vxlan-gbp/vxlan_gbp_error.def |
| 800 | ) |
| 801 | |
| 802 | list(APPEND VNET_API_FILES vxlan-gbp/vxlan_gbp.api) |
| 803 | |
| 804 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 805 | # Tunnel protocol: vxlan-gpe |
| 806 | ############################################################################## |
| 807 | |
| 808 | list(APPEND VNET_SOURCES |
| 809 | vxlan-gpe/vxlan_gpe.c |
| 810 | vxlan-gpe/encap.c |
| 811 | vxlan-gpe/decap.c |
| 812 | vxlan-gpe/vxlan_gpe_api.c |
| 813 | ) |
| 814 | |
Filip Tehlar | e1714d3 | 2019-03-05 03:01:43 -0800 | [diff] [blame] | 815 | list (APPEND VNET_MULTIARCH_SOURCES |
| 816 | vxlan-gpe/decap.c |
| 817 | ) |
| 818 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 819 | list(APPEND VNET_HEADERS |
| 820 | vxlan-gpe/vxlan_gpe.h |
| 821 | vxlan-gpe/vxlan_gpe_packet.h |
| 822 | vxlan-gpe/vxlan_gpe_error.def |
| 823 | ) |
| 824 | |
| 825 | list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api) |
| 826 | |
| 827 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 828 | # ipv6 segment routing |
| 829 | ############################################################################## |
| 830 | |
| 831 | list(APPEND VNET_SOURCES |
| 832 | srv6/sr.c |
| 833 | srv6/sr_localsid.c |
| 834 | srv6/sr_policy_rewrite.c |
| 835 | srv6/sr_steering.c |
| 836 | srv6/sr_api.c |
| 837 | ) |
| 838 | |
| 839 | list(APPEND VNET_HEADERS |
| 840 | srv6/sr_packet.h |
| 841 | srv6/sr.h |
| 842 | ) |
| 843 | |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 844 | list(APPEND VNET_API_FILES |
| 845 | srv6/sr.api |
| 846 | srv6/sr_types.api |
| 847 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 848 | |
| 849 | ############################################################################## |
| 850 | # mpls segment routing |
| 851 | ############################################################################## |
| 852 | |
| 853 | list(APPEND VNET_SOURCES |
| 854 | srmpls/sr_mpls_policy.c |
| 855 | srmpls/sr_mpls_steering.c |
| 856 | srmpls/sr_mpls_api.c |
| 857 | ) |
| 858 | |
| 859 | list(APPEND VNET_HEADERS |
| 860 | srmpls/sr_mpls.h |
| 861 | ) |
| 862 | |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 863 | list(APPEND VNET_API_FILES |
| 864 | srmpls/sr_mpls.api |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 865 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 866 | |
| 867 | ############################################################################## |
| 868 | # IPFIX / netflow v10 |
| 869 | ############################################################################## |
| 870 | list(APPEND VNET_SOURCES |
| 871 | ipfix-export/flow_report.c |
| 872 | ipfix-export/flow_api.c |
| 873 | ) |
| 874 | |
| 875 | list(APPEND VNET_HEADERS |
| 876 | ipfix-export/flow_report.h |
| 877 | ipfix-export/ipfix_info_elements.h |
| 878 | ipfix-export/ipfix_packet.h |
| 879 | ) |
| 880 | |
| 881 | list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api) |
| 882 | |
| 883 | ############################################################################## |
Mohsin Kazmi | 29467b5 | 2019-10-08 19:42:38 +0200 | [diff] [blame] | 884 | # GSO |
| 885 | ############################################################################## |
| 886 | list(APPEND VNET_SOURCES |
| 887 | gso/cli.c |
| 888 | gso/gso.c |
| 889 | gso/gso_api.c |
| 890 | gso/node.c |
| 891 | ) |
| 892 | |
| 893 | list(APPEND VNET_HEADERS |
Mohsin Kazmi | f382b06 | 2020-08-11 15:00:44 +0200 | [diff] [blame] | 894 | gso/gro.h |
| 895 | gso/gro_func.h |
Mohsin Kazmi | 0b04209 | 2020-04-17 16:50:56 +0000 | [diff] [blame] | 896 | gso/hdr_offset_parser.h |
Mohsin Kazmi | 29467b5 | 2019-10-08 19:42:38 +0200 | [diff] [blame] | 897 | gso/gso.h |
| 898 | ) |
| 899 | |
| 900 | list(APPEND VNET_API_FILES |
| 901 | gso/gso.api |
| 902 | ) |
| 903 | |
| 904 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 905 | # IPFIX classify code |
| 906 | ############################################################################## |
| 907 | |
| 908 | list(APPEND VNET_SOURCES |
| 909 | ipfix-export/flow_report_classify.c |
| 910 | ) |
| 911 | |
| 912 | list(APPEND VNET_HEADERS |
| 913 | ipfix-export/flow_report_classify.h |
| 914 | ) |
| 915 | |
| 916 | ############################################################################## |
| 917 | # lawful intercept |
| 918 | ############################################################################## |
| 919 | |
| 920 | list(APPEND VNET_SOURCES |
| 921 | lawful-intercept/lawful_intercept.c |
| 922 | lawful-intercept/node.c |
| 923 | ) |
| 924 | |
Filip Tehlar | c3a0e8d | 2019-03-11 05:53:35 -0700 | [diff] [blame] | 925 | list(APPEND VNET_MULTIARCH_SOURCES |
| 926 | lawful-intercept/node.c |
| 927 | ) |
| 928 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 929 | list(APPEND VNET_HEADERS |
| 930 | lawful-intercept/lawful_intercept.h |
| 931 | ) |
| 932 | |
| 933 | ############################################################################## |
| 934 | # SPAN (port mirroring) |
| 935 | ############################################################################## |
| 936 | |
| 937 | list(APPEND VNET_SOURCES |
| 938 | span/span_api.c |
| 939 | span/span.c |
| 940 | span/node.c |
| 941 | ) |
| 942 | |
Filip Tehlar | a79271f | 2019-03-05 03:46:40 -0800 | [diff] [blame] | 943 | list(APPEND VNET_MULTIARCH_SOURCES |
| 944 | span/node.c |
| 945 | ) |
| 946 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 947 | list(APPEND VNET_HEADERS |
| 948 | span/span.h |
| 949 | ) |
| 950 | |
| 951 | list(APPEND VNET_API_FILES span/span.api) |
| 952 | |
| 953 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 954 | # Packet generator |
| 955 | ############################################################################## |
| 956 | |
| 957 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 958 | pg/cli.c |
| 959 | pg/edit.c |
| 960 | pg/init.c |
| 961 | pg/input.c |
| 962 | pg/output.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 963 | pg/stream.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 964 | pg/pg_api.c |
| 965 | ) |
| 966 | |
| 967 | list(APPEND VNET_HEADERS |
| 968 | pg/pg.h |
| 969 | pg/edit.h |
| 970 | ) |
| 971 | |
| 972 | list(APPEND VNET_API_FILES pg/pg.api) |
| 973 | |
| 974 | ############################################################################## |
| 975 | # virtio |
| 976 | ############################################################################## |
| 977 | |
| 978 | list(APPEND VNET_SOURCES |
Damjan Marion | f41244f | 2019-11-08 17:41:06 +0100 | [diff] [blame] | 979 | devices/virtio/cli.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 980 | devices/virtio/device.c |
Damjan Marion | f41244f | 2019-11-08 17:41:06 +0100 | [diff] [blame] | 981 | devices/virtio/format.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 982 | devices/virtio/node.c |
Damjan Marion | f41244f | 2019-11-08 17:41:06 +0100 | [diff] [blame] | 983 | devices/virtio/pci.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 984 | devices/virtio/vhost_user.c |
| 985 | devices/virtio/vhost_user_input.c |
| 986 | devices/virtio/vhost_user_output.c |
| 987 | devices/virtio/vhost_user_api.c |
| 988 | devices/virtio/virtio.c |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 989 | devices/virtio/virtio_api.c |
Mohsin Kazmi | a0a6833 | 2020-07-16 12:55:42 +0000 | [diff] [blame] | 990 | devices/virtio/virtio_pci_legacy.c |
Mohsin Kazmi | 379aac3 | 2020-08-20 10:25:12 +0200 | [diff] [blame] | 991 | devices/virtio/virtio_pci_modern.c |
Mohsin Kazmi | a5203b5 | 2020-10-12 13:01:24 +0200 | [diff] [blame] | 992 | devices/virtio/virtio_process.c |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 993 | devices/virtio/virtio_types_api.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 994 | ) |
| 995 | |
| 996 | list(APPEND VNET_HEADERS |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 997 | devices/virtio/pci.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 998 | devices/virtio/virtio.h |
Mohsin Kazmi | e347acb | 2020-09-28 10:26:33 +0000 | [diff] [blame] | 999 | devices/virtio/virtio_buffering.h |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 1000 | devices/virtio/virtio_std.h |
Mohsin Kazmi | a0a6833 | 2020-07-16 12:55:42 +0000 | [diff] [blame] | 1001 | devices/virtio/virtio_pci_legacy.h |
Mohsin Kazmi | 379aac3 | 2020-08-20 10:25:12 +0200 | [diff] [blame] | 1002 | devices/virtio/virtio_pci_modern.h |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 1003 | devices/virtio/vhost_std.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1004 | devices/virtio/vhost_user.h |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 1005 | devices/virtio/virtio_types_api.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1006 | ) |
| 1007 | |
| 1008 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1009 | devices/virtio/vhost_user_input.c |
| 1010 | devices/virtio/vhost_user_output.c |
Filip Tehlar | 608996d | 2019-03-04 03:03:13 -0800 | [diff] [blame] | 1011 | devices/virtio/node.c |
| 1012 | devices/af_packet/node.c |
Filip Tehlar | aee7364 | 2019-03-13 05:50:44 -0700 | [diff] [blame] | 1013 | devices/virtio/device.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1014 | ) |
| 1015 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 1016 | list(APPEND VNET_API_FILES |
| 1017 | devices/virtio/vhost_user.api |
| 1018 | devices/virtio/virtio.api |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 1019 | devices/virtio/virtio_types.api |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 1020 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1021 | |
| 1022 | ############################################################################## |
| 1023 | # tap interface (with virtio backend) |
| 1024 | ############################################################################## |
| 1025 | |
| 1026 | list(APPEND VNET_SOURCES |
| 1027 | devices/tap/cli.c |
| 1028 | devices/tap/tap.c |
| 1029 | devices/tap/tapv2_api.c |
| 1030 | ) |
| 1031 | |
| 1032 | list(APPEND VNET_HEADERS |
| 1033 | devices/tap/tap.h |
| 1034 | ) |
| 1035 | |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 1036 | list(APPEND VNET_API_FILES |
| 1037 | devices/tap/tapv2.api |
| 1038 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1039 | |
| 1040 | ############################################################################## |
| 1041 | # tap interface (with virtio backend) |
| 1042 | ############################################################################## |
| 1043 | |
| 1044 | list(APPEND VNET_SOURCES |
| 1045 | devices/pipe/pipe_api.c |
| 1046 | devices/pipe/pipe.c |
| 1047 | ) |
| 1048 | |
| 1049 | list(APPEND VNET_HEADERS |
| 1050 | devices/pipe/pipe.h |
| 1051 | ) |
| 1052 | |
| 1053 | list(APPEND VNET_API_FILES devices/pipe/pipe.api) |
| 1054 | |
| 1055 | ############################################################################## |
| 1056 | # session managmeent |
| 1057 | ############################################################################## |
| 1058 | |
| 1059 | list(APPEND VNET_SOURCES |
| 1060 | session/session.c |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 1061 | session/session_debug.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1062 | session/session_table.c |
| 1063 | session/session_rules_table.c |
| 1064 | session/session_lookup.c |
| 1065 | session/session_node.c |
| 1066 | session/transport.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1067 | session/application.c |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1068 | session/application_worker.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1069 | session/session_cli.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1070 | session/application_interface.c |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1071 | session/application_local.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1072 | session/application_namespace.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1073 | session/segment_manager.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1074 | session/session_api.c |
| 1075 | ) |
| 1076 | |
| 1077 | list(APPEND VNET_HEADERS |
| 1078 | session/session.h |
| 1079 | session/session_table.h |
| 1080 | session/session_rules_table.h |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1081 | session/session_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1082 | session/session_lookup.h |
| 1083 | session/application.h |
| 1084 | session/transport.h |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1085 | session/transport_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1086 | session/application_interface.h |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1087 | session/application_local.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1088 | session/application_namespace.h |
| 1089 | session/session_debug.h |
| 1090 | session/segment_manager.h |
| 1091 | session/mma_template.h |
| 1092 | session/mma_template.c |
| 1093 | session/mma_16.h |
| 1094 | session/mma_40.h |
| 1095 | ) |
| 1096 | |
| 1097 | list(APPEND VNET_API_FILES session/session.api) |
| 1098 | |
| 1099 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1100 | # TLS protocol |
| 1101 | ############################################################################## |
| 1102 | |
| 1103 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1104 | tls/tls.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1105 | ) |
| 1106 | |
| 1107 | list(APPEND VNET_HEADERS |
| 1108 | tls/tls.h |
Florin Coras | 54a51fd | 2019-02-07 15:34:52 -0800 | [diff] [blame] | 1109 | tls/tls_test.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1110 | ) |
| 1111 | |
| 1112 | ############################################################################## |
| 1113 | # Linux packet interface |
| 1114 | ############################################################################## |
| 1115 | |
| 1116 | list(APPEND VNET_SOURCES |
| 1117 | devices/af_packet/af_packet.c |
| 1118 | devices/af_packet/device.c |
| 1119 | devices/af_packet/node.c |
| 1120 | devices/af_packet/cli.c |
| 1121 | devices/af_packet/af_packet_api.c |
| 1122 | ) |
| 1123 | |
Filip Tehlar | aee7364 | 2019-03-13 05:50:44 -0700 | [diff] [blame] | 1124 | list(APPEND VNET_MULTIARCH_SOURCES |
Filip Tehlar | aee7364 | 2019-03-13 05:50:44 -0700 | [diff] [blame] | 1125 | devices/af_packet/device.c |
| 1126 | ) |
| 1127 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1128 | list(APPEND VNET_HEADERS |
| 1129 | devices/af_packet/af_packet.h |
| 1130 | ) |
| 1131 | |
| 1132 | list(APPEND VNET_API_FILES devices/af_packet/af_packet.api) |
| 1133 | |
| 1134 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1135 | # Driver feature graph arc support |
| 1136 | ############################################################################## |
| 1137 | |
| 1138 | list(APPEND VNET_SOURCES |
| 1139 | feature/feature.c |
| 1140 | feature/feature_api.c |
| 1141 | feature/registration.c |
| 1142 | ) |
| 1143 | |
| 1144 | list(APPEND VNET_HEADERS |
| 1145 | feature/feature.h |
| 1146 | ) |
| 1147 | |
| 1148 | list(APPEND VNET_API_FILES feature/feature.api) |
| 1149 | |
| 1150 | ############################################################################## |
| 1151 | # Unix kernel related |
| 1152 | ############################################################################## |
| 1153 | |
| 1154 | # FIXME: unix/hgshm.c |
| 1155 | |
| 1156 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1157 | unix/gdb_funcs.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1158 | unix/tuntap.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1159 | ) |
| 1160 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1161 | list(APPEND VNET_HEADERS |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1162 | unix/tuntap.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1163 | ) |
| 1164 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1165 | ############################################################################## |
| 1166 | # FIB |
| 1167 | ############################################################################## |
| 1168 | |
| 1169 | list(APPEND VNET_SOURCES |
| 1170 | fib/fib.c |
Neale Ranns | d695333 | 2021-08-10 07:39:18 +0000 | [diff] [blame] | 1171 | fib/ip4_fib_hash.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1172 | fib/ip4_fib.c |
Neale Ranns | d695333 | 2021-08-10 07:39:18 +0000 | [diff] [blame] | 1173 | fib/ip4_fib_16.c |
| 1174 | fib/ip4_fib_8.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1175 | fib/ip6_fib.c |
| 1176 | fib/mpls_fib.c |
| 1177 | fib/fib_table.c |
| 1178 | fib/fib_walk.c |
| 1179 | fib/fib_types.c |
| 1180 | fib/fib_node.c |
| 1181 | fib/fib_node_list.c |
| 1182 | fib/fib_entry.c |
| 1183 | fib/fib_entry_src.c |
Neale Ranns | 3bab8f9 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 1184 | fib/fib_entry_src_adj.c |
| 1185 | fib/fib_entry_src_api.c |
| 1186 | fib/fib_entry_src_drop.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1187 | fib/fib_entry_src_interface.c |
| 1188 | fib/fib_entry_src_interpose.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1189 | fib/fib_entry_src_lisp.c |
Neale Ranns | 3bab8f9 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 1190 | fib/fib_entry_src_mpls.c |
| 1191 | fib/fib_entry_src_simple.c |
| 1192 | fib/fib_entry_src_rr.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1193 | fib/fib_entry_cover.c |
| 1194 | fib/fib_entry_delegate.c |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 1195 | fib/fib_entry_track.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1196 | fib/fib_path_list.c |
| 1197 | fib/fib_path.c |
| 1198 | fib/fib_path_ext.c |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 1199 | fib/fib_sas.c |
Neale Ranns | 3bab8f9 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 1200 | fib/fib_source.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1201 | fib/fib_urpf_list.c |
| 1202 | fib/fib_attached_export.c |
| 1203 | fib/fib_api.c |
| 1204 | fib/fib_bfd.c |
| 1205 | ) |
| 1206 | |
| 1207 | list(APPEND VNET_HEADERS |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1208 | fib/fib.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1209 | fib/fib_api.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1210 | fib/ip4_fib.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1211 | fib/ip6_fib.h |
| 1212 | fib/fib_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1213 | fib/fib_table.h |
| 1214 | fib/fib_node.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1215 | fib/fib_node_list.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1216 | fib/fib_entry.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1217 | fib/fib_entry_delegate.h |
Neale Ranns | e2fe097 | 2020-11-26 08:37:27 +0000 | [diff] [blame] | 1218 | fib/fib_sas.h |
Neale Ranns | 3bab8f9 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 1219 | fib/fib_source.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1220 | ) |
| 1221 | |
Neale Ranns | 976b259 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 1222 | list(APPEND VNET_API_FILES |
| 1223 | fib/fib_types.api |
| 1224 | fib/fib.api |
| 1225 | ) |
Benoît Ganne | d39495d | 2019-07-25 14:14:03 +0200 | [diff] [blame] | 1226 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1227 | ############################################################################## |
| 1228 | # ADJ |
| 1229 | ############################################################################## |
| 1230 | |
| 1231 | list(APPEND VNET_SOURCES |
| 1232 | adj/adj_nbr.c |
| 1233 | adj/adj_glean.c |
| 1234 | adj/adj_midchain.c |
Neale Ranns | f339f49 | 2021-03-31 07:36:33 +0000 | [diff] [blame] | 1235 | adj/adj_midchain_node.c |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 1236 | adj/adj_midchain_delegate.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1237 | adj/adj_mcast.c |
| 1238 | adj/adj_l2.c |
| 1239 | adj/adj_nsh.c |
| 1240 | adj/adj.c |
| 1241 | adj/rewrite.c |
| 1242 | adj/adj_bfd.c |
| 1243 | adj/adj_delegate.c |
| 1244 | ) |
| 1245 | |
Filip Tehlar | 0b2c15d | 2019-03-04 02:52:54 -0800 | [diff] [blame] | 1246 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1247 | adj/adj_nsh.c |
| 1248 | adj/adj_l2.c |
Neale Ranns | f339f49 | 2021-03-31 07:36:33 +0000 | [diff] [blame] | 1249 | adj/adj_midchain_node.c |
Filip Tehlar | 0b2c15d | 2019-03-04 02:52:54 -0800 | [diff] [blame] | 1250 | ) |
| 1251 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1252 | list(APPEND VNET_HEADERS |
| 1253 | adj/adj.h |
| 1254 | adj/adj_types.h |
| 1255 | adj/adj_glean.h |
| 1256 | adj/adj_nsh.h |
| 1257 | adj/adj_nbr.h |
Alberto Compagno | d8ca1e4 | 2019-08-12 11:43:19 +0200 | [diff] [blame] | 1258 | adj/adj_midchain.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1259 | adj/rewrite.h |
| 1260 | ) |
| 1261 | |
| 1262 | ############################################################################## |
| 1263 | # Data-Plane Objects |
| 1264 | ############################################################################## |
| 1265 | |
| 1266 | list(APPEND VNET_SOURCES |
| 1267 | dpo/dpo.c |
| 1268 | dpo/drop_dpo.c |
| 1269 | dpo/ip_null_dpo.c |
| 1270 | dpo/ip6_ll_dpo.c |
| 1271 | dpo/punt_dpo.c |
| 1272 | dpo/receive_dpo.c |
| 1273 | dpo/load_balance.c |
| 1274 | dpo/load_balance_map.c |
| 1275 | dpo/lookup_dpo.c |
| 1276 | dpo/classify_dpo.c |
| 1277 | dpo/replicate_dpo.c |
| 1278 | dpo/interface_rx_dpo.c |
| 1279 | dpo/interface_tx_dpo.c |
| 1280 | dpo/mpls_disposition.c |
| 1281 | dpo/mpls_label_dpo.c |
| 1282 | dpo/l3_proxy_dpo.c |
| 1283 | dpo/dvr_dpo.c |
Neale Ranns | 1dbcf30 | 2019-07-19 11:44:53 +0000 | [diff] [blame] | 1284 | dpo/pw_cw.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1285 | ) |
| 1286 | |
Filip Tehlar | eb9a27f | 2019-03-07 01:42:11 -0800 | [diff] [blame] | 1287 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1288 | dpo/lookup_dpo.h |
| 1289 | dpo/mpls_disposition.c |
| 1290 | dpo/dvr_dpo.c |
| 1291 | dpo/mpls_label_dpo.c |
| 1292 | dpo/interface_rx_dpo.c |
| 1293 | ) |
| 1294 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1295 | list(APPEND VNET_HEADERS |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1296 | dpo/load_balance.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1297 | dpo/drop_dpo.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1298 | dpo/lookup_dpo.h |
| 1299 | dpo/punt_dpo.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1300 | dpo/classify_dpo.h |
| 1301 | dpo/receive_dpo.h |
| 1302 | dpo/ip_null_dpo.h |
| 1303 | dpo/replicate_dpo.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1304 | dpo/dpo.h |
| 1305 | ) |
| 1306 | |
| 1307 | ############################################################################## |
| 1308 | # Multicast FIB |
| 1309 | ############################################################################## |
| 1310 | |
| 1311 | list(APPEND VNET_SOURCES |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1312 | mfib/mfib_forward.c |
| 1313 | mfib/ip4_mfib.c |
| 1314 | mfib/ip6_mfib.c |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 1315 | mfib/mfib_api.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1316 | mfib/mfib_types.c |
| 1317 | mfib/mfib_signal.c |
| 1318 | mfib/mfib_itf.c |
| 1319 | mfib/mfib_entry.c |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 1320 | mfib/mfib_entry.c |
| 1321 | mfib/mfib_entry_cover.c |
| 1322 | mfib/mfib_entry_delegate.c |
| 1323 | mfib/mfib_entry_src.c |
| 1324 | mfib/mfib_entry_src_rr.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1325 | mfib/mfib_table.c |
| 1326 | ) |
| 1327 | |
Filip Tehlar | 79c27eb | 2019-03-07 00:30:03 -0800 | [diff] [blame] | 1328 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1329 | mfib/mfib_forward.c |
| 1330 | ) |
| 1331 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1332 | list(APPEND VNET_HEADERS |
| 1333 | mfib/ip4_mfib.h |
| 1334 | mfib/mfib_types.h |
| 1335 | mfib/mfib_table.h |
| 1336 | ) |
| 1337 | |
Benoît Ganne | d39495d | 2019-07-25 14:14:03 +0200 | [diff] [blame] | 1338 | list(APPEND VNET_API_FILES mfib/mfib_types.api) |
| 1339 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1340 | ############################################################################## |
| 1341 | # Utilities |
| 1342 | ############################################################################## |
| 1343 | |
| 1344 | list(APPEND VNET_SOURCES |
| 1345 | util/radix.c |
| 1346 | util/refcount.c |
Neale Ranns | c8352bc | 2018-08-29 10:23:58 -0700 | [diff] [blame] | 1347 | util/throttle.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1348 | ) |
| 1349 | |
Damjan Marion | ac5554c | 2018-08-30 22:56:59 +0200 | [diff] [blame] | 1350 | list(APPEND VNET_HEADERS |
| 1351 | util/throttle.h |
| 1352 | ) |
| 1353 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1354 | ############################################################################## |
| 1355 | # QoS |
| 1356 | ############################################################################## |
| 1357 | |
| 1358 | list(APPEND VNET_SOURCES |
| 1359 | qos/qos_types.c |
| 1360 | qos/qos_api.c |
| 1361 | qos/qos_egress_map.c |
| 1362 | qos/qos_record.c |
Filip Tehlar | 0bddf7e | 2019-03-04 08:14:07 -0800 | [diff] [blame] | 1363 | qos/qos_record_node.c |
Neale Ranns | 83832e7 | 2019-07-31 02:48:02 -0700 | [diff] [blame] | 1364 | qos/qos_store.c |
| 1365 | qos/qos_store_node.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1366 | qos/qos_mark.c |
Filip Tehlar | 0bddf7e | 2019-03-04 08:14:07 -0800 | [diff] [blame] | 1367 | qos/qos_mark_node.c |
| 1368 | ) |
| 1369 | |
| 1370 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1371 | qos/qos_record_node.c |
| 1372 | qos/qos_mark_node.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1373 | ) |
| 1374 | |
| 1375 | list(APPEND VNET_API_FILES qos/qos.api) |
| 1376 | |
| 1377 | ############################################################################## |
| 1378 | # BIER |
| 1379 | ############################################################################## |
| 1380 | |
| 1381 | list(APPEND VNET_SOURCES |
| 1382 | bier/bier_bit_string.c |
| 1383 | bier/bier_entry.c |
| 1384 | bier/bier_fmask.c |
| 1385 | bier/bier_fmask_db.c |
| 1386 | bier/bier_input.c |
| 1387 | bier/bier_lookup.c |
| 1388 | bier/bier_output.c |
| 1389 | bier/bier_table.c |
| 1390 | bier/bier_types.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1391 | bier/bier_api.c |
| 1392 | bier/bier_drop.c |
| 1393 | bier/bier_update.c |
| 1394 | bier/bier_imp_node.c |
| 1395 | bier/bier_imp.c |
| 1396 | bier/bier_disp_entry.c |
| 1397 | bier/bier_disp_lookup_node.c |
| 1398 | bier/bier_disp_dispatch_node.c |
| 1399 | bier/bier_disp_table.c |
| 1400 | bier/bier_bift_table.c |
| 1401 | ) |
| 1402 | |
Filip Tehlar | a01e032 | 2019-03-05 03:34:52 -0800 | [diff] [blame] | 1403 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1404 | bier/bier_disp_dispatch_node.c |
| 1405 | bier/bier_disp_lookup_node.c |
| 1406 | bier/bier_imp_node.c |
| 1407 | ) |
| 1408 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1409 | list(APPEND VNET_HEADERS |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1410 | bier/bier_types.h |
| 1411 | bier/bier_entry.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1412 | bier/bier_update.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1413 | bier/bier_table.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1414 | ) |
| 1415 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1416 | list(APPEND VNET_API_FILES bier/bier.api) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1417 | |
Florin Coras | 41c9e04 | 2018-09-11 00:10:41 -0700 | [diff] [blame] | 1418 | ############################################################################## |
Matus Fabian | b4515b4 | 2018-11-19 04:25:32 -0800 | [diff] [blame] | 1419 | # SYSLOG |
| 1420 | ############################################################################## |
| 1421 | |
| 1422 | list (APPEND VNET_SOURCES |
| 1423 | syslog/syslog_api.c |
| 1424 | syslog/syslog_udp.c |
| 1425 | syslog/syslog.c |
| 1426 | ) |
| 1427 | |
| 1428 | list(APPEND VNET_HEADERS |
| 1429 | syslog/syslog_udp.h |
| 1430 | syslog/syslog.h |
| 1431 | ) |
| 1432 | |
| 1433 | list(APPEND VNET_API_FILES syslog/syslog.api) |
| 1434 | |
| 1435 | ############################################################################## |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 1436 | # Tunnel Endpoint Information Base |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 1437 | ############################################################################## |
| 1438 | |
| 1439 | list (APPEND VNET_SOURCES |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 1440 | teib/teib_api.c |
| 1441 | teib/teib_cli.c |
| 1442 | teib/teib.c |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 1443 | ) |
| 1444 | |
| 1445 | list(APPEND VNET_HEADERS |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 1446 | teib/teib.h |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 1447 | ) |
| 1448 | |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 1449 | list(APPEND VNET_API_FILES teib/teib.api) |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 1450 | |
| 1451 | ############################################################################## |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 1452 | # ARP/ND |
| 1453 | ############################################################################## |
| 1454 | |
| 1455 | list (APPEND VNET_SOURCES |
| 1456 | arp/arp_api.c |
| 1457 | arp/arp.c |
| 1458 | arp/arp_proxy.c |
| 1459 | ) |
| 1460 | |
| 1461 | list(APPEND VNET_HEADERS |
| 1462 | arp/arp.h |
| 1463 | ) |
| 1464 | |
| 1465 | list(APPEND VNET_API_FILES arp/arp.api) |
| 1466 | |
| 1467 | list (APPEND VNET_SOURCES |
| 1468 | ip6-nd/ip6_mld.c |
| 1469 | ip6-nd/ip6_nd.c |
| 1470 | ip6-nd/ip6_nd_api.c |
| 1471 | ip6-nd/ip6_nd_proxy.c |
| 1472 | ip6-nd/ip6_ra.c |
| 1473 | ip6-nd/rd_cp.c |
| 1474 | ip6-nd/rd_cp_api.c |
| 1475 | ) |
| 1476 | |
| 1477 | list(APPEND VNET_HEADERS |
| 1478 | ip6-nd/ip6_nd.h |
| 1479 | ) |
| 1480 | |
| 1481 | list(APPEND VNET_API_FILES |
| 1482 | ip6-nd/ip6_nd.api |
| 1483 | ip6-nd/rd_cp.api |
| 1484 | ) |
| 1485 | |
| 1486 | ############################################################################## |
Florin Coras | 41c9e04 | 2018-09-11 00:10:41 -0700 | [diff] [blame] | 1487 | # VNET Library |
| 1488 | ############################################################################## |
| 1489 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1490 | add_vpp_library(vnet |
| 1491 | SOURCES ${VNET_SOURCES} |
| 1492 | MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES} |
| 1493 | INSTALL_HEADERS ${VNET_HEADERS} |
| 1494 | API_FILES ${VNET_API_FILES} |
Klement Sekera | efd4d70 | 2021-04-20 19:21:36 +0200 | [diff] [blame] | 1495 | LINK_LIBRARIES vppinfra svm vlib |
Chris Luke | c171d01 | 2020-01-15 20:30:04 -0500 | [diff] [blame] | 1496 | DEPENDS vpp_version_h api_headers |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1497 | ) |
Florin Coras | 41c9e04 | 2018-09-11 00:10:41 -0700 | [diff] [blame] | 1498 | |
| 1499 | ############################################################################## |
Yulong Pei | db43bb6 | 2020-01-09 01:12:43 +0800 | [diff] [blame] | 1500 | # vpp api test client library |
| 1501 | ############################################################################## |
| 1502 | |
| 1503 | add_vpp_library (vatclient |
| 1504 | SOURCES ip/ip_types_api.c |
| 1505 | DEPENDS api_headers |
| 1506 | ) |
| 1507 | |
| 1508 | ############################################################################## |
Ole Troan | df87f80 | 2020-11-18 19:17:48 +0100 | [diff] [blame] | 1509 | # VAT2 plugins |
| 1510 | ############################################################################## |
| 1511 | add_vpp_test_library(vnet |
| 1512 | ${VNET_API_FILES} |
| 1513 | ) |
| 1514 | |
| 1515 | ############################################################################## |