diff options
-rw-r--r-- | include/net/ipx.h | 8 | ||||
-rw-r--r-- | net/ipx/af_ipx.c | 9 |
2 files changed, 8 insertions, 9 deletions
diff --git a/include/net/ipx.h b/include/net/ipx.h index 75466acdce21..0143180fecc9 100644 --- a/include/net/ipx.h +++ b/include/net/ipx.h | |||
@@ -143,6 +143,14 @@ void ipxitf_down(struct ipx_interface *intrfc); | |||
143 | struct ipx_interface *ipxitf_find_using_net(__be32 net); | 143 | struct ipx_interface *ipxitf_find_using_net(__be32 net); |
144 | int ipxitf_send(struct ipx_interface *intrfc, struct sk_buff *skb, char *node); | 144 | int ipxitf_send(struct ipx_interface *intrfc, struct sk_buff *skb, char *node); |
145 | __be16 ipx_cksum(struct ipxhdr *packet, int length); | 145 | __be16 ipx_cksum(struct ipxhdr *packet, int length); |
146 | int ipxrtr_add_route(__be32 network, struct ipx_interface *intrfc, | ||
147 | unsigned char *node); | ||
148 | void ipxrtr_del_routes(struct ipx_interface *intrfc); | ||
149 | int ipxrtr_route_packet(struct sock *sk, struct sockaddr_ipx *usipx, | ||
150 | struct iovec *iov, size_t len, int noblock); | ||
151 | int ipxrtr_route_skb(struct sk_buff *skb); | ||
152 | struct ipx_route *ipxrtr_lookup(__be32 net); | ||
153 | int ipxrtr_ioctl(unsigned int cmd, void __user *arg); | ||
146 | 154 | ||
147 | static __inline__ void ipxitf_put(struct ipx_interface *intrfc) | 155 | static __inline__ void ipxitf_put(struct ipx_interface *intrfc) |
148 | { | 156 | { |
diff --git a/net/ipx/af_ipx.c b/net/ipx/af_ipx.c index 994e28bfb32e..e5a00a9b52f3 100644 --- a/net/ipx/af_ipx.c +++ b/net/ipx/af_ipx.c | |||
@@ -84,15 +84,6 @@ DEFINE_SPINLOCK(ipx_interfaces_lock); | |||
84 | struct ipx_interface *ipx_primary_net; | 84 | struct ipx_interface *ipx_primary_net; |
85 | struct ipx_interface *ipx_internal_net; | 85 | struct ipx_interface *ipx_internal_net; |
86 | 86 | ||
87 | extern int ipxrtr_add_route(__be32 network, struct ipx_interface *intrfc, | ||
88 | unsigned char *node); | ||
89 | extern void ipxrtr_del_routes(struct ipx_interface *intrfc); | ||
90 | extern int ipxrtr_route_packet(struct sock *sk, struct sockaddr_ipx *usipx, | ||
91 | struct iovec *iov, size_t len, int noblock); | ||
92 | extern int ipxrtr_route_skb(struct sk_buff *skb); | ||
93 | extern struct ipx_route *ipxrtr_lookup(__be32 net); | ||
94 | extern int ipxrtr_ioctl(unsigned int cmd, void __user *arg); | ||
95 | |||
96 | struct ipx_interface *ipx_interfaces_head(void) | 87 | struct ipx_interface *ipx_interfaces_head(void) |
97 | { | 88 | { |
98 | struct ipx_interface *rc = NULL; | 89 | struct ipx_interface *rc = NULL; |