summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1997-08-26 20:02:30 +0000
committerderaadt <deraadt@openbsd.org>1997-08-26 20:02:30 +0000
commit95c222166550c2dcd48573d3526d6ba943216830 (patch)
tree1528e08c9f05bae5923343f92196fbb61f8864a8 /sys/netinet/tcp_input.c
parentAdd tcp port 433, nnsp (NetNews Server Protocol). (diff)
downloadwireguard-openbsd-95c222166550c2dcd48573d3526d6ba943216830.tar.xz
wireguard-openbsd-95c222166550c2dcd48573d3526d6ba943216830.zip
indent
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r--sys/netinet/tcp_input.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 5cbfd174029..9c3e8f93985 100644
--- a/sys/netinet/tcp_input.c
+++ b/sys/netinet/tcp_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tcp_input.c,v 1.14 1997/08/16 01:34:41 angelos Exp $ */
+/* $OpenBSD: tcp_input.c,v 1.15 1997/08/26 20:02:32 deraadt Exp $ */
/* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */
/*
@@ -1306,7 +1306,7 @@ trimthenstep6:
}
break;
- /*
+ /*
* In CLOSING STATE in addition to the processing for
* the ESTABLISHED state if the ACK acknowledges our FIN
* then enter the TIME-WAIT state, otherwise ignore
@@ -1461,14 +1461,14 @@ dodata: /* XXX */
}
switch (tp->t_state) {
- /*
+ /*
* In ESTABLISHED STATE enter the CLOSE_WAIT state.
*/
case TCPS_ESTABLISHED:
tp->t_state = TCPS_CLOSE_WAIT;
break;
- /*
+ /*
* If still in FIN_WAIT_1 STATE FIN has not been acked so
* enter the CLOSING state.
*/
@@ -1476,7 +1476,7 @@ dodata: /* XXX */
tp->t_state = TCPS_CLOSING;
break;
- /*
+ /*
* In FIN_WAIT_2 state enter the TIME_WAIT state,
* starting the time-wait timer, turning off the other
* standard timers.