mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
Introduce a link to the ipfw command, dnctl, for dummynet configuration.
dnctl only handles dummynet configuration, and is part of the effort to
support dummynet in pf.
/sbin/ipfw continues to accept pipe, queue and sched commands, but these can
now also be issued via the new dnctl command.
Reviewed by: donner
MFC after: 2 weeks
Sponsored by: Rubicon Communications, LLC ("Netgate")
Differential Revision: https://reviews.freebsd.org/D30465
24 lines
368 B
Makefile
24 lines
368 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=ipfw
|
|
PROG= ipfw
|
|
|
|
LINKS= ${BINDIR}/ipfw ${BINDIR}/dnctl
|
|
MLINKS= ipfw.8 dnctl.8
|
|
|
|
SRCS= ipfw2.c dummynet.c ipv6.c main.c nat.c tables.c
|
|
SRCS+= nat64clat.c nat64lsn.c nat64stl.c nptv6.c
|
|
|
|
.if ${MK_PF} != "no"
|
|
SRCS+= altq.c
|
|
CFLAGS+=-DPF
|
|
.endif
|
|
|
|
LIBADD= jail util
|
|
MAN= ipfw.8
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
CWARNFLAGS+= -Wno-cast-align
|