mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 00:58:36 -04:00
This subsystem is superseded by modern debugging facilities, e.g. DTrace probes and TCP black box logging. We intentionally leave SO_DEBUG in place, as many utilities may set it on a socket. Also the tcp::debug DTrace probes look at this flag on a socket. Reviewed by: gnn, tuexen Discussed with: rscheff, rrs, jtl Differential revision: https://reviews.freebsd.org/D37694
23 lines
365 B
Makefile
23 lines
365 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../netinet/tcp_stacks
|
|
|
|
STACKNAME= rack
|
|
KMOD= tcp_${STACKNAME}
|
|
SRCS= rack.c sack_filter.c rack_bbr_common.c
|
|
|
|
SRCS+= opt_inet.h opt_inet6.h opt_ipsec.h
|
|
SRCS+= opt_kern_tls.h
|
|
SRCS+= opt_ratelimit.h
|
|
|
|
#
|
|
# Enable full debugging
|
|
#
|
|
#CFLAGS += -g
|
|
|
|
CFLAGS+= -DMODNAME=${KMOD}
|
|
CFLAGS+= -DSTACKNAME=${STACKNAME}
|
|
|
|
.include <bsd.kmod.mk>
|