summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_timer.c
diff options
context:
space:
mode:
authorandre <andre@FreeBSD.org>2007-03-21 19:37:55 +0000
committerandre <andre@FreeBSD.org>2007-03-21 19:37:55 +0000
commit8aefbb617959eb71f5ec34bd628b570fc029b63b (patch)
tree6ac6b5740ab0701ffa9e20c1f0abd778756b96ed /sys/netinet/tcp_timer.c
parent844ebe3715b92770b45354267210e3d909c96260 (diff)
downloadFreeBSD-src-8aefbb617959eb71f5ec34bd628b570fc029b63b.zip
FreeBSD-src-8aefbb617959eb71f5ec34bd628b570fc029b63b.tar.gz
ANSIfy function declarations and remove register keywords for variables.
Consistently apply style to all function declarations.
Diffstat (limited to 'sys/netinet/tcp_timer.c')
-rw-r--r--sys/netinet/tcp_timer.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/sys/netinet/tcp_timer.c b/sys/netinet/tcp_timer.c
index 3cfaead..c46a2b4 100644
--- a/sys/netinet/tcp_timer.c
+++ b/sys/netinet/tcp_timer.c
@@ -146,8 +146,7 @@ SYSCTL_INT(_net_inet_tcp, OID_AUTO, timer_race, CTLFLAG_RD, &tcp_timer_race,
*/
void
-tcp_timer_delack(xtp)
- void *xtp;
+tcp_timer_delack(void *xtp)
{
struct tcpcb *tp = xtp;
struct inpcb *inp;
@@ -182,8 +181,7 @@ tcp_timer_delack(xtp)
}
void
-tcp_timer_2msl(xtp)
- void *xtp;
+tcp_timer_2msl(void *xtp)
{
struct tcpcb *tp = xtp;
struct inpcb *inp;
@@ -306,8 +304,7 @@ tcp_timer_2msl_tw(int reuse)
}
void
-tcp_timer_keep(xtp)
- void *xtp;
+tcp_timer_keep(void *xtp)
{
struct tcpcb *tp = xtp;
struct tcptemp *t_template;
@@ -398,8 +395,7 @@ dropit:
}
void
-tcp_timer_persist(xtp)
- void *xtp;
+tcp_timer_persist(void *xtp)
{
struct tcpcb *tp = xtp;
struct inpcb *inp;
@@ -465,8 +461,7 @@ out:
}
void
-tcp_timer_rexmt(xtp)
- void *xtp;
+tcp_timer_rexmt(void * xtp)
{
struct tcpcb *tp = xtp;
int rexmt;
OpenPOWER on IntegriCloud