diff options
| author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-30 08:16:23 +0000 |
|---|---|---|
| committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1995-05-30 08:16:23 +0000 |
| commit | 9b2e535452929d6f2f798a2c01b23b1f547a0b0f (patch) | |
| tree | 176f04f674860c7cfae9ac5d2ff4d4e1d73cb2b7 /sys/netinet/tcp_usrreq.c | |
| parent | 44204187ec133a0ab7bd77c8d974ad5afd4d88b4 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_usrreq.c')
| -rw-r--r-- | sys/netinet/tcp_usrreq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/tcp_usrreq.c b/sys/netinet/tcp_usrreq.c index eb8237c73f72..b2bc22c8b233 100644 --- a/sys/netinet/tcp_usrreq.c +++ b/sys/netinet/tcp_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)tcp_usrreq.c 8.2 (Berkeley) 1/3/94 - * $Id: tcp_usrreq.c,v 1.12 1995/03/16 18:15:06 bde Exp $ + * $Id: tcp_usrreq.c,v 1.13 1995/04/09 01:29:28 davidg Exp $ */ #include <sys/param.h> @@ -206,7 +206,7 @@ tcp_usrreq(so, req, m, nam, control) error = EAFNOSUPPORT; break; } - + if ((error = tcp_connect(tp, nam)) != 0) break; error = tcp_output(tp); @@ -402,7 +402,7 @@ tcp_connect(tp, nam) return error; } - /* + /* * Cannot simply call in_pcbconnect, because there might be an * earlier incarnation of this same connection still in * TIME_WAIT state, creating an ADDRINUSE error. @@ -697,7 +697,7 @@ tcp_sysctl(name, namelen, oldp, oldlenp, newp, newlen) case TCPCTL_RTTDFLT: return (sysctl_int(oldp, oldlenp, newp, newlen, &tcp_rttdflt)); case TCPCTL_KEEPIDLE: - return (sysctl_int(oldp, oldlenp, newp, newlen, + return (sysctl_int(oldp, oldlenp, newp, newlen, &tcp_keepidle)); case TCPCTL_KEEPINTVL: return (sysctl_int(oldp, oldlenp, newp, newlen, |
