opnsense-src/tests/sys/net/routing
Dimitry Andric 967348a966 Use static inline for iface_{setup,delete}_addr in tests/sys/net/routing.
This fixes possible link errors, similar to:

ld: error: undefined symbol: iface_setup_addr
>>> referenced by test_rtsock_l3.c:111 (tests/sys/net/routing/test_rtsock_l3.c:111)
>>>               test_rtsock_l3.o:(presetup_ipv4)
>>> referenced by test_rtsock_l3.c:79 (tests/sys/net/routing/test_rtsock_l3.c:79)
>>>               test_rtsock_l3.o:(presetup_ipv6)
>>> referenced by test_rtsock_l3.c:512 (tests/sys/net/routing/test_rtsock_l3.c:512)
>>>               test_rtsock_l3.o:(atfu_rtm_change_v4_gw_success_body)
>>> referenced 10 more times

In C (not C++), 'naked' inline is almost always a mistake. Either use
static inline (this is appropriate for most cases), or extern inline.

MFC after:	3 days
2020-08-08 11:06:27 +00:00
..
generic_cleanup.sh Switch rtsock tests to per-test jails and epair interfaces. 2020-03-29 06:25:57 +00:00
Makefile Skip routing regression tests depending on if_epair if this module isn't installed. 2020-04-17 16:31:07 +00:00
params.h Switch rtsock tests to per-test jails and epair interfaces. 2020-03-29 06:25:57 +00:00
rtsock_common.h Use static inline for iface_{setup,delete}_addr in tests/sys/net/routing. 2020-08-08 11:06:27 +00:00
rtsock_config.h Skip routing regression tests depending on if_epair if this module isn't installed. 2020-04-17 16:31:07 +00:00
rtsock_print.h Remove trailing whitespace 2020-02-16 10:59:32 +00:00
test_rtsock_l3.c Add routing tests verifying basic RTM_CHANGE functionality. 2020-04-02 20:02:33 +00:00
test_rtsock_lladdr.c Add routing tests verifying basic RTM_CHANGE functionality. 2020-04-02 20:02:33 +00:00