diff options
author | Xavier Simonart <xavier.simonart@intel.com> | 2020-05-02 21:51:24 +0200 |
---|---|---|
committer | Xavier Simonart <xavier.simonart@intel.com> | 2020-05-29 23:31:54 +0200 |
commit | 08fee9c5d2e1d1f3fe14d00683c2a4b7a17e7876 (patch) | |
tree | 5b1f2a9aaab23b654c9504f83eaa1cb8ac2a0b01 /VNFs/DPPD-PROX/prox_compat.h | |
parent | 354bfce1e946ec796516b3ae7f3fc677960867ef (diff) |
Added initial support for BGP
Through this commit BGP messages are forwarded to tap device
Netlink messages are enabled to receive route Updates.
In addition, generating tasks can also specify a routing table
which will be used when sending packets
The routes initialized by the routing table can be changed through
the reception of BGP messages
Change-Id: I187ba9a921885cbc9b209aae5fb654309e3388b8
Signed-off-by: Xavier Simonart <xavier.simonart@intel.com>
Diffstat (limited to 'VNFs/DPPD-PROX/prox_compat.h')
-rw-r--r-- | VNFs/DPPD-PROX/prox_compat.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/VNFs/DPPD-PROX/prox_compat.h b/VNFs/DPPD-PROX/prox_compat.h index e181cd8e..bd059a6c 100644 --- a/VNFs/DPPD-PROX/prox_compat.h +++ b/VNFs/DPPD-PROX/prox_compat.h @@ -37,6 +37,12 @@ struct prox_rte_table_params { uint64_t seed; }; +#if RTE_VERSION < RTE_VERSION_NUM(16,4,0,1) +typedef uint8_t prox_next_hop_index_type; +#else +typedef uint32_t prox_next_hop_index_type; +#endif + #if RTE_VERSION < RTE_VERSION_NUM(17,11,0,0) static void *prox_rte_table_create(struct prox_rte_table_params *params, int socket_id, uint32_t entry_size) |