1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-31 16:57:10 +00:00

Fix a sneaky bug where we were missing an extern

to get the rxt threshold.. and thus created our own defaulted to 0 :-(

Sponsored by:	Netflix Inc
This commit is contained in:
Randall Stewart 2016-03-08 00:16:34 +00:00
parent acaa855f6e
commit ec64c84ddc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=296476

View File

@ -124,7 +124,7 @@ __FBSDID("$FreeBSD$");
#include <security/mac/mac_framework.h>
const int tcprexmtthresh;
extern const int tcprexmtthresh;
VNET_DECLARE(int, tcp_autorcvbuf_inc);
#define V_tcp_autorcvbuf_inc VNET(tcp_autorcvbuf_inc)