Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 6378
b: refs/heads/master
c: ba602a8
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller authored and David S. Miller committed Aug 29, 2005
1 parent b8b990d commit 6d3fa45
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bf73d1c5d726ac717755efc7e15d2a86dd383448
refs/heads/master: ba602a816132dcc66e875dddf2c62512a9f6f8cb
8 changes: 4 additions & 4 deletions trunk/net/ipv4/ipvs/ip_vs_proto_tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -604,14 +604,14 @@ void ip_vs_tcp_conn_listen(struct ip_vs_conn *cp)
}


static void tcp_init(struct ip_vs_protocol *pp)
static void ip_vs_tcp_init(struct ip_vs_protocol *pp)
{
IP_VS_INIT_HASH_TABLE(tcp_apps);
pp->timeout_table = tcp_timeouts;
}


static void tcp_exit(struct ip_vs_protocol *pp)
static void ip_vs_tcp_exit(struct ip_vs_protocol *pp)
{
}

Expand All @@ -621,8 +621,8 @@ struct ip_vs_protocol ip_vs_protocol_tcp = {
.protocol = IPPROTO_TCP,
.dont_defrag = 0,
.appcnt = ATOMIC_INIT(0),
.init = tcp_init,
.exit = tcp_exit,
.init = ip_vs_tcp_init,
.exit = ip_vs_tcp_exit,
.register_app = tcp_register_app,
.unregister_app = tcp_unregister_app,
.conn_schedule = tcp_conn_schedule,
Expand Down

0 comments on commit 6d3fa45

Please sign in to comment.