summaryrefslogtreecommitdiff
path: root/net/ipv4/tcp_timer.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@conectiva.com.br>2003-09-28 13:05:34 -0300
committerArnaldo Carvalho de Melo <acme@conectiva.com.br>2003-09-28 13:05:34 -0300
commit0d668f586db81a0fd86f3c955e86db31ca285de2 (patch)
treef1f5480feedd58b58659431fd1653aa4e23c0253 /net/ipv4/tcp_timer.c
parentde4446e4086b8e405805a9e429056292328a14a1 (diff)
o NET: move net/ipv4/tcp_timer.c EXPORT_SYMBOLs from net/netsyms.c
Also move the EXPORT_SYMBOL(tcp_statistics) to net/ipv4/tcp.c, so that finally the tcp.h header can be removed from net/netsyms.c, ctags doesn't catches the variables defined with DEFINE_SNMP_STAT :-\
Diffstat (limited to 'net/ipv4/tcp_timer.c')
-rw-r--r--net/ipv4/tcp_timer.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c
index 1fad1d9afcea..58796c6c9a16 100644
--- a/net/ipv4/tcp_timer.c
+++ b/net/ipv4/tcp_timer.c
@@ -20,6 +20,7 @@
* Jorge Cwik, <jorge@laser.satlink.net>
*/
+#include <linux/module.h>
#include <net/tcp.h>
int sysctl_tcp_syn_retries = TCP_SYN_RETRIES;
@@ -656,3 +657,8 @@ out:
bh_unlock_sock(sk);
sock_put(sk);
}
+
+EXPORT_SYMBOL(tcp_clear_xmit_timers);
+EXPORT_SYMBOL(tcp_delete_keepalive_timer);
+EXPORT_SYMBOL(tcp_init_xmit_timers);
+EXPORT_SYMBOL(tcp_reset_keepalive_timer);