diff options
author | 2004-10-28 19:22:52 +0000 | |
---|---|---|
committer | 2004-10-28 19:22:52 +0000 | |
commit | 64c77b9332c5892d33899e1580df890d2afb4ad0 (patch) | |
tree | 5f7d36834172b8224379283800f9e6cf86efbd41 /sys/netinet/tcp_subr.c | |
parent | need to map the regs though lasi used to save us before (diff) | |
download | wireguard-openbsd-64c77b9332c5892d33899e1580df890d2afb4ad0.tar.xz wireguard-openbsd-64c77b9332c5892d33899e1580df890d2afb4ad0.zip |
Modulate tcp_now by a random amount on a per-connection basis.
ok markus@ frantzen@
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r-- | sys/netinet/tcp_subr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c index f7bf150e24a..0070c1824e0 100644 --- a/sys/netinet/tcp_subr.c +++ b/sys/netinet/tcp_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_subr.c,v 1.83 2004/08/10 20:04:55 markus Exp $ */ +/* $OpenBSD: tcp_subr.c,v 1.84 2004/10/28 19:22:52 mcbride Exp $ */ /* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */ /* @@ -182,7 +182,6 @@ tcp_init() NULL); #endif /* TCP_SACK */ in_pcbinit(&tcbtable, tcbhashsize); - tcp_now = arc4random() / 2; #ifdef INET6 /* |