numam-dpdk/lib/librte_net/rte_net_version.map
Stephen Hemminger 596d31092d net: add function to convert string to ethernet address
Make a function that can be used in place of eth_aton_r
to convert a string to rte_ether_addr. This function
allows both byte (xx:xx:xx:xx:xx:xx) and word (XXXX:XXXX:XXXX)
format and has the same lack of error handling as the original.

This also allows ethdev to no longer have a hard dependency
on the cmdline library.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Reviewed-by: Andrew Rybchenko <arybchenko@solarflare.com>
2019-07-08 21:26:52 +02:00

31 lines
327 B
Plaintext

DPDK_16.11 {
global:
rte_net_get_ptype;
local: *;
};
DPDK_17.05 {
global:
rte_net_crc_calc;
rte_net_crc_set_alg;
} DPDK_16.11;
DPDK_19.08 {
global:
rte_eth_random_addr;
rte_ether_format_addr;
} DPDK_17.05;
EXPERIMENTAL {
global:
rte_net_make_rarp_packet;
rte_net_skip_ip6_ext;
rte_ether_unformat_addr;
};