icmp.c (29a3cad5c6ae9e7fbf1509d01d39c3c3c38f11f9) icmp.c (fe2c6338fd2c6f383c4d4164262f35c8f3708e1f)
1/*
2 * Internet Control Message Protocol (ICMPv6)
3 * Linux INET6 implementation
4 *
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 *
8 * Based on net/ipv4/icmp.c

--- 962 unchanged lines hidden (view full) ---

971 break;
972 }
973
974 return fatal;
975}
976EXPORT_SYMBOL(icmpv6_err_convert);
977
978#ifdef CONFIG_SYSCTL
1/*
2 * Internet Control Message Protocol (ICMPv6)
3 * Linux INET6 implementation
4 *
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 *
8 * Based on net/ipv4/icmp.c

--- 962 unchanged lines hidden (view full) ---

971 break;
972 }
973
974 return fatal;
975}
976EXPORT_SYMBOL(icmpv6_err_convert);
977
978#ifdef CONFIG_SYSCTL
979ctl_table ipv6_icmp_table_template[] = {
979struct ctl_table ipv6_icmp_table_template[] = {
980 {
981 .procname = "ratelimit",
982 .data = &init_net.ipv6.sysctl.icmpv6_time,
983 .maxlen = sizeof(int),
984 .mode = 0644,
985 .proc_handler = proc_dointvec_ms_jiffies,
986 },
987 { },

--- 17 unchanged lines hidden ---
980 {
981 .procname = "ratelimit",
982 .data = &init_net.ipv6.sysctl.icmpv6_time,
983 .maxlen = sizeof(int),
984 .mode = 0644,
985 .proc_handler = proc_dointvec_ms_jiffies,
986 },
987 { },

--- 17 unchanged lines hidden ---