diff options
author | 2013-04-10 08:50:59 +0000 | |
---|---|---|
committer | 2013-04-10 08:50:59 +0000 | |
commit | 96c820636b53d5eb761dc8974342357acdf1b321 (patch) | |
tree | b5dbab679e4cb77579a8f3e316933e33789c08d1 /sys/netinet/tcp_input.c | |
parent | Merge usbd_get_device_desc() into the only function using them. (diff) | |
download | wireguard-openbsd-96c820636b53d5eb761dc8974342357acdf1b321.tar.xz wireguard-openbsd-96c820636b53d5eb761dc8974342357acdf1b321.zip |
Remove various external variable declaration from sources files and
move them to the corresponding header with an appropriate comment if
necessary.
ok guenther@
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index a98381ebb03..f2b74f845dd 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.259 2013/04/02 18:27:47 bluhm Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.260 2013/04/10 08:50:59 mpi Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -121,8 +121,6 @@ struct tcpipv6hdr tcp_saveti6; int tcprexmtthresh = 3; int tcptv_keep_init = TCPTV_KEEP_INIT; -extern u_long sb_max; - int tcp_rst_ppslim = 100; /* 100pps */ int tcp_rst_ppslim_count = 0; struct timeval tcp_rst_ppslim_last; |