mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
well as sets in some of the groundwork for committing BBR. The hpts system is updated as well as some other needed utilities for the entrance of BBR. This is actually part 1 of 3 more needed commits which will finally complete with BBRv1 being added as a new tcp stack. Sponsored by: Netflix Inc. Differential Revision: https://reviews.freebsd.org/D20834
23 lines
364 B
Makefile
23 lines
364 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_tcpdebug.h
|
|
SRCS+= opt_kern_tls.h
|
|
|
|
#
|
|
# Enable full debugging
|
|
#
|
|
#CFLAGS += -g
|
|
|
|
CFLAGS+= -DMODNAME=${KMOD}
|
|
CFLAGS+= -DSTACKNAME=${STACKNAME}
|
|
|
|
.include <bsd.kmod.mk>
|