summaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_subr.c
diff options
context:
space:
mode:
authorNiels Provos <provos@cvs.openbsd.org>1999-12-21 14:09:49 +0000
committerNiels Provos <provos@cvs.openbsd.org>1999-12-21 14:09:49 +0000
commit742833335a9729682caa0fcac1e33e2e91ca2364 (patch)
treea3da453e671d7b339d5e60e057bade8a6dc754eb /sys/netinet/tcp_subr.c
parentd6ca8e9f232f8a59041c5b2d42c1afa367fe7f08 (diff)
enable SACK again
Diffstat (limited to 'sys/netinet/tcp_subr.c')
-rw-r--r--sys/netinet/tcp_subr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
index a63bcc2c3af..6b417103a7a 100644
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_subr.c,v 1.21 1999/12/08 06:50:20 itojun Exp $ */
+/* $OpenBSD: tcp_subr.c,v 1.22 1999/12/21 14:09:48 provos Exp $ */
/* $NetBSD: tcp_subr.c,v 1.22 1996/02/13 23:44:00 christos Exp $ */
/*
@@ -105,7 +105,7 @@ int tcp_do_rfc1323 = TCP_DO_RFC1323;
#ifndef TCP_DO_SACK
#ifdef TCP_SACK
-#define TCP_DO_SACK 0 /* XXX - make this 1 when SACK is fixed */
+#define TCP_DO_SACK 1
#else
#define TCP_DO_SACK 0
#endif