diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1999-09-28 22:25:29 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1999-09-28 22:25:29 +0000 |
commit | 0ae8dceaebe3659ee0c3352c08125f403e77ebca (patch) | |
tree | 5085c389f09da78182b899d19fe1068b619a69dd /net/netsyms.c | |
parent | 273767781288c35c9d679e908672b9996cda4c34 (diff) |
Merge with 2.3.10.
Diffstat (limited to 'net/netsyms.c')
-rw-r--r-- | net/netsyms.c | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/net/netsyms.c b/net/netsyms.c index 9fee8a822..f057c792b 100644 --- a/net/netsyms.c +++ b/net/netsyms.c @@ -25,6 +25,7 @@ #include <linux/hippidevice.h> #endif #include <net/pkt_sched.h> +#include <net/scm.h> #ifdef CONFIG_BRIDGE #include <net/br.h> @@ -32,7 +33,6 @@ #ifdef CONFIG_INET #include <linux/ip.h> -#include <linux/etherdevice.h> #include <net/protocol.h> #include <net/arp.h> #include <net/ip.h> @@ -40,9 +40,7 @@ #include <net/tcp.h> #include <net/icmp.h> #include <net/route.h> -#include <net/scm.h> #include <net/inet_common.h> -#include <net/pkt_sched.h> #include <linux/inet.h> #include <linux/mroute.h> #include <linux/igmp.h> @@ -56,18 +54,18 @@ extern __u32 sysctl_rmem_max; #include <linux/icmpv6.h> #include <net/ipv6.h> #include <net/ndisc.h> -#include <net/dst.h> #include <net/transp_v6.h> extern int tcp_tw_death_row_slot; +extern int sysctl_local_port_range[2]; +extern int tcp_port_rover; +extern int udp_port_rover; #endif #endif #include <linux/rtnetlink.h> -#include <net/scm.h> - #if defined(CONFIG_ULTRA) || defined(CONFIG_WD80x3) || \ defined(CONFIG_EL2) || defined(CONFIG_NE2000) || \ defined(CONFIG_E2100) || defined(CONFIG_HPLAN_PLUS) || \ @@ -90,10 +88,6 @@ extern void destroy_8023_client(struct datalink_proto *); #ifdef CONFIG_ATALK_MODULE #include <net/sock.h> -#include <net/dst.h> -#include <net/checksum.h> -#include <linux/etherdevice.h> -#include <net/pkt_sched.h> #endif #ifdef CONFIG_SYSCTL @@ -281,13 +275,11 @@ EXPORT_SYMBOL(inet_sendmsg); EXPORT_SYMBOL(inet_recvmsg); /* Socket demultiplexing. */ -EXPORT_SYMBOL(tcp_good_socknum); EXPORT_SYMBOL(tcp_ehash); EXPORT_SYMBOL(tcp_ehash_size); EXPORT_SYMBOL(tcp_listening_hash); EXPORT_SYMBOL(tcp_bhash); EXPORT_SYMBOL(tcp_bhash_size); -EXPORT_SYMBOL(udp_good_socknum); EXPORT_SYMBOL(udp_hash); EXPORT_SYMBOL(destroy_sock); @@ -328,7 +320,9 @@ EXPORT_SYMBOL(tcp_v4_send_check); EXPORT_SYMBOL(tcp_v4_conn_request); EXPORT_SYMBOL(tcp_create_openreq_child); EXPORT_SYMBOL(tcp_bucket_create); -EXPORT_SYMBOL(tcp_bucket_unlock); +EXPORT_SYMBOL(__tcp_put_port); +EXPORT_SYMBOL(tcp_put_port); +EXPORT_SYMBOL(tcp_inherit_port); EXPORT_SYMBOL(tcp_v4_syn_recv_sock); EXPORT_SYMBOL(tcp_v4_do_rcv); EXPORT_SYMBOL(tcp_v4_connect); @@ -344,6 +338,9 @@ EXPORT_SYMBOL(tcp_transmit_skb); EXPORT_SYMBOL(tcp_connect); EXPORT_SYMBOL(tcp_make_synack); EXPORT_SYMBOL(tcp_tw_death_row_slot); +EXPORT_SYMBOL(sysctl_local_port_range); +EXPORT_SYMBOL(tcp_port_rover); +EXPORT_SYMBOL(udp_port_rover); EXPORT_SYMBOL(tcp_sync_mss); EXPORT_SYMBOL(net_statistics); |