aa2715612c
to switch the output method in run-time. Also document some sysctl variables that can by changed for NAT64 module. NAT64 had compile time option IPFIREWALL_NAT64_DIRECT_OUTPUT to use if_output directly from nat64 module. By default is used netisr based output method. Now both methods can be used, but they require different handling by rules. Obtained from: Yandex LLC MFC after: 3 weeks Sponsored by: Yandex LLC Differential Revision: https://reviews.freebsd.org/D16647
11 lines
207 B
Makefile
11 lines
207 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/netpfil/ipfw/nat64
|
|
|
|
KMOD= ipfw_nat64
|
|
SRCS= ip_fw_nat64.c nat64_translate.c
|
|
SRCS+= nat64lsn.c nat64lsn_control.c
|
|
SRCS+= nat64stl.c nat64stl_control.c
|
|
|
|
.include <bsd.kmod.mk>
|