512d873ff1
The VXLAN related definitions and structures are moved from rte_ether.h to a new header file: rte_xvlan.h. Also introducing a new define macro for VXLAN default port id: RTE_VXLAN_DEFAULT_PORT Signed-off-by: Flavia Musatescu <flavia.musatescu@intel.com> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com> Tested-by: Raslan Darawsheh <rasland@mellanox.com>
24 lines
451 B
Meson
24 lines
451 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
version = 1
|
|
allow_experimental_apis = true
|
|
headers = files('rte_ip.h',
|
|
'rte_tcp.h',
|
|
'rte_udp.h',
|
|
'rte_esp.h',
|
|
'rte_sctp.h',
|
|
'rte_icmp.h',
|
|
'rte_arp.h',
|
|
'rte_ether.h',
|
|
'rte_vxlan.h',
|
|
'rte_gre.h',
|
|
'rte_gtp.h',
|
|
'rte_net.h',
|
|
'rte_net_crc.h',
|
|
'rte_mpls.h',
|
|
'rte_higig.h')
|
|
|
|
sources = files('rte_arp.c', 'rte_ether.c', 'rte_net.c', 'rte_net_crc.c')
|
|
deps += ['mbuf']
|