6efc06725f
Now that there is a version of ether_aton in rte_ether, it can be used by the cmdline ethernet address parser. Note: ether_aton_r can not be used in cmdline because the old code would accept either bytes XX:XX:XX:XX:XX:XX or words XXXX:XXXX:XXXX and we need to keep compatibility. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Acked-by: Olivier Matz <olivier.matz@6wind.com>
31 lines
678 B
Meson
31 lines
678 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
version = 2
|
|
allow_experimental_apis = true
|
|
sources = files('cmdline.c',
|
|
'cmdline_cirbuf.c',
|
|
'cmdline_parse.c',
|
|
'cmdline_parse_etheraddr.c',
|
|
'cmdline_parse_ipaddr.c',
|
|
'cmdline_parse_num.c',
|
|
'cmdline_parse_portlist.c',
|
|
'cmdline_parse_string.c',
|
|
'cmdline_rdline.c',
|
|
'cmdline_socket.c',
|
|
'cmdline_vt100.c')
|
|
|
|
headers = files('cmdline.h',
|
|
'cmdline_parse.h',
|
|
'cmdline_parse_num.h',
|
|
'cmdline_parse_ipaddr.h',
|
|
'cmdline_parse_etheraddr.h',
|
|
'cmdline_parse_string.h',
|
|
'cmdline_rdline.h',
|
|
'cmdline_vt100.h',
|
|
'cmdline_socket.h',
|
|
'cmdline_cirbuf.h',
|
|
'cmdline_parse_portlist.h')
|
|
|
|
deps += ['net']
|