diff --git a/sys/modules/tcp/bbr/Makefile b/sys/modules/tcp/bbr/Makefile index 8c0c35d3cab8..b94ffd0b518e 100644 --- a/sys/modules/tcp/bbr/Makefile +++ b/sys/modules/tcp/bbr/Makefile @@ -1,23 +1,24 @@ # # $FreeBSD$ # .PATH: ${.CURDIR}/../../../netinet/tcp_stacks STACKNAME= bbr KMOD= tcp_${STACKNAME} SRCS= bbr.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 +SRCS+= opt_ratelimit.h +SRCS+= opt_tcpdebug.h # # Enable full debugging # #CFLAGS += -g CFLAGS+= -DMODNAME=${KMOD} CFLAGS+= -DSTACKNAME=${STACKNAME} .include diff --git a/sys/modules/tcp/rack/Makefile b/sys/modules/tcp/rack/Makefile index 55ca2ad080ac..ba9dca32babe 100644 --- a/sys/modules/tcp/rack/Makefile +++ b/sys/modules/tcp/rack/Makefile @@ -1,23 +1,24 @@ # # $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 +SRCS+= opt_ratelimit.h +SRCS+= opt_tcpdebug.h # # Enable full debugging # #CFLAGS += -g CFLAGS+= -DMODNAME=${KMOD} CFLAGS+= -DSTACKNAME=${STACKNAME} .include