Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
1a5daf17
Commit
1a5daf17
authored
Sep 28, 2003
by
Arnaldo Carvalho de Melo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
o NET: move net/ipv4/udp.c EXPORT_SYMBOLs from net/netsyms.c
parent
ac2fed23
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
29 deletions
+15
-29
net/ipv4/udp.c
net/ipv4/udp.c
+15
-0
net/netsyms.c
net/netsyms.c
+0
-29
No files found.
net/ipv4/udp.c
View file @
1a5daf17
...
...
@@ -83,6 +83,7 @@
#include <asm/ioctls.h>
#include <linux/types.h>
#include <linux/fcntl.h>
#include <linux/module.h>
#include <linux/socket.h>
#include <linux/sockios.h>
#include <linux/in.h>
...
...
@@ -1532,3 +1533,17 @@ void udp4_proc_exit(void)
udp_proc_unregister
(
&
udp4_seq_afinfo
);
}
#endif
/* CONFIG_PROC_FS */
EXPORT_SYMBOL
(
udp_connect
);
EXPORT_SYMBOL
(
udp_disconnect
);
EXPORT_SYMBOL
(
udp_hash
);
EXPORT_SYMBOL
(
udp_hash_lock
);
EXPORT_SYMBOL
(
udp_ioctl
);
EXPORT_SYMBOL
(
udp_port_rover
);
EXPORT_SYMBOL
(
udp_prot
);
EXPORT_SYMBOL
(
udp_sendmsg
);
#ifdef CONFIG_PROC_FS
EXPORT_SYMBOL
(
udp_proc_register
);
EXPORT_SYMBOL
(
udp_proc_unregister
);
#endif
net/netsyms.c
View file @
1a5daf17
...
...
@@ -58,21 +58,6 @@
#if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
#include <net/esp.h>
#endif
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE) \
|| defined (CONFIG_IP_SCTP_MODULE)
#include <linux/in6.h>
#include <linux/icmpv6.h>
#include <net/ipv6.h>
#include <net/ndisc.h>
#include <net/transp_v6.h>
#include <net/addrconf.h>
extern
int
sysctl_local_port_range
[
2
];
extern
int
tcp_port_rover
;
extern
int
udp_port_rover
;
#endif
#endif
#include <linux/rtnetlink.h>
...
...
@@ -176,12 +161,6 @@ EXPORT_SYMBOL(devinet_ioctl);
EXPORT_SYMBOL
(
register_inetaddr_notifier
);
EXPORT_SYMBOL
(
unregister_inetaddr_notifier
);
/* proc */
#ifdef CONFIG_PROC_FS
EXPORT_SYMBOL
(
udp_proc_register
);
EXPORT_SYMBOL
(
udp_proc_unregister
);
#endif
/* needed for ip_gre -cw */
EXPORT_SYMBOL
(
ip_statistics
);
#if defined(CONFIG_INET_ESP) || defined(CONFIG_INET_ESP_MODULE) || defined(CONFIG_INET6_ESP) || defined(CONFIG_INET6_ESP_MODULE)
...
...
@@ -197,17 +176,11 @@ EXPORT_SYMBOL(flow_cache_genid);
/* inet functions common to v4 and v6 */
/* Socket demultiplexing. */
EXPORT_SYMBOL
(
udp_hash
);
EXPORT_SYMBOL
(
udp_hash_lock
);
EXPORT_SYMBOL
(
ip_queue_xmit
);
EXPORT_SYMBOL
(
memcpy_fromiovecend
);
EXPORT_SYMBOL
(
csum_partial_copy_fromiovecend
);
/* UDP/TCP exported functions for TCPv6 */
EXPORT_SYMBOL
(
udp_ioctl
);
EXPORT_SYMBOL
(
udp_connect
);
EXPORT_SYMBOL
(
udp_disconnect
);
EXPORT_SYMBOL
(
udp_sendmsg
);
EXPORT_SYMBOL
(
tcp_write_wakeup
);
EXPORT_SYMBOL
(
tcp_send_synack
);
EXPORT_SYMBOL
(
tcp_check_req
);
...
...
@@ -220,7 +193,6 @@ EXPORT_SYMBOL(tcp_statistics);
EXPORT_SYMBOL
(
tcp_rcv_state_process
);
EXPORT_SYMBOL
(
tcp_timewait_state_process
);
EXPORT_SYMBOL
(
tcp_create_openreq_child
);
EXPORT_SYMBOL
(
udp_prot
);
EXPORT_SYMBOL
(
tcp_simple_retransmit
);
EXPORT_SYMBOL
(
tcp_transmit_skb
);
EXPORT_SYMBOL
(
tcp_connect
);
...
...
@@ -228,7 +200,6 @@ EXPORT_SYMBOL(tcp_make_synack);
EXPORT_SYMBOL
(
tcp_tw_deschedule
);
EXPORT_SYMBOL
(
tcp_delete_keepalive_timer
);
EXPORT_SYMBOL
(
tcp_reset_keepalive_timer
);
EXPORT_SYMBOL
(
udp_port_rover
);
EXPORT_SYMBOL
(
tcp_sync_mss
);
EXPORT_SYMBOL
(
net_statistics
);
EXPORT_SYMBOL
(
sysctl_tcp_reordering
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment