mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Some existing applications setup Netlink socket with SOCK_DGRAM instead of SOCK_RAW. Update the manpage to clarify that the default way of creating the socket should be with SOCK_RAW. Update the code to support both SOCK_RAW and SOCK_DGRAM. Reviewed By: pauamma Differential Revision: https://reviews.freebsd.org/D38075
15 lines
274 B
Makefile
15 lines
274 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= tests
|
|
WARNS?= 1
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/netlink
|
|
|
|
ATF_TESTS_C += test_snl
|
|
ATF_TESTS_PYTEST += test_nl_core.py
|
|
ATF_TESTS_PYTEST += test_rtnl_iface.py
|
|
ATF_TESTS_PYTEST += test_rtnl_ifaddr.py
|
|
|
|
CFLAGS+= -I${.CURDIR:H:H:H}
|
|
|
|
.include <bsd.test.mk>
|