patch-2.4.6 linux/net/ipv6/udp.c
Next file: linux/net/ipx/af_spx.c
Previous file: linux/net/ipv6/tcp_ipv6.c
Back to the patch index
Back to the overall index
- Lines: 31
- Date:
Wed Jun 20 21:00:55 2001
- Orig file:
v2.4.5/linux/net/ipv6/udp.c
- Orig date:
Thu Apr 12 12:11:39 2001
diff -u --recursive --new-file v2.4.5/linux/net/ipv6/udp.c linux/net/ipv6/udp.c
@@ -7,7 +7,7 @@
*
* Based on linux/ipv4/udp.c
*
- * $Id: udp.c,v 1.62 2001/03/06 21:15:11 davem Exp $
+ * $Id: udp.c,v 1.63 2001/06/13 16:25:03 davem Exp $
*
* Fixes:
* Hideaki YOSHIFUJI : sin6_scope_id support
@@ -992,7 +992,21 @@
get_port: udp_v6_get_port,
};
+extern struct proto_ops inet6_dgram_ops;
+
+static struct inet_protosw udpv6_protosw = {
+ type: SOCK_DGRAM,
+ protocol: IPPROTO_UDP,
+ prot: &udpv6_prot,
+ ops: &inet6_dgram_ops,
+ capability: -1,
+ no_check: UDP_CSUM_DEFAULT,
+ flags: INET_PROTOSW_PERMANENT,
+};
+
+
void __init udpv6_init(void)
{
inet6_add_protocol(&udpv6_protocol);
+ inet6_register_protosw(&udpv6_protosw);
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)