blob: 90beac853d2e0aedf2f7650d602add5959e9e86d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
DPDK_2.0 {
global:
rte_lpm_add;
rte_lpm_create;
rte_lpm_delete;
rte_lpm_delete_all;
rte_lpm_find_existing;
rte_lpm_free;
rte_lpm_is_rule_present;
rte_lpm6_add;
rte_lpm6_create;
rte_lpm6_delete;
rte_lpm6_delete_all;
rte_lpm6_delete_bulk_func;
rte_lpm6_find_existing;
rte_lpm6_free;
rte_lpm6_is_rule_present;
rte_lpm6_lookup;
rte_lpm6_lookup_bulk_func;
local: *;
};
DPDK_16.04 {
global:
rte_lpm_add;
rte_lpm_find_existing;
rte_lpm_create;
rte_lpm_free;
rte_lpm_is_rule_present;
rte_lpm_delete;
rte_lpm_delete_all;
} DPDK_2.0;
DPDK_17.05 {
global:
rte_lpm6_add;
rte_lpm6_is_rule_present;
rte_lpm6_lookup;
rte_lpm6_lookup_bulk_func;
} DPDK_16.04;
|