diff options
| author | ozaki-r <ozaki-r@NetBSD.org> | 2022-09-20 07:19:14 +0000 |
|---|---|---|
| committer | ozaki-r <ozaki-r@NetBSD.org> | 2022-09-20 07:19:14 +0000 |
| commit | ba12e3006d6dfd4d6eb492b93e4e18bbb591d4dc (patch) | |
| tree | e945f7d9c94303aa0806a2d221df2b19e528356b /sys/netinet/tcp_usrreq.c | |
| parent | fa93a10fa0738110ca35d57717dffe9b6a5155c1 (diff) | |
tcp: separate syn cache stuffs into tcp_syncache.[ch] files
No functional change.
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
| -rw-r--r-- | sys/netinet/tcp_usrreq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index 70754103c51..51b90e3143e 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -1,4 +1,4 @@ -/* $NetBSD: tcp_usrreq.c,v 1.231 2022/06/28 01:44:19 riastradh Exp $ */ +/* $NetBSD: tcp_usrreq.c,v 1.232 2022/09/20 07:19:14 ozaki-r Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -99,7 +99,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: tcp_usrreq.c,v 1.231 2022/06/28 01:44:19 riastradh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tcp_usrreq.c,v 1.232 2022/09/20 07:19:14 ozaki-r Exp $"); #ifdef _KERNEL_OPT #include "opt_inet.h" @@ -151,6 +151,7 @@ __KERNEL_RCSID(0, "$NetBSD: tcp_usrreq.c,v 1.231 2022/06/28 01:44:19 riastradh E #include <netinet/tcp_congctl.h> #include <netinet/tcp_debug.h> #include <netinet/tcp_vtw.h> +#include <netinet/tcp_syncache.h> static int tcp_debug_capture(struct tcpcb *tp, int req) |
