Deleted Added
full compact
inet6.c (74453) inet6.c (77565)
1/* BSDI inet.c,v 2.3 1995/10/24 02:19:29 prb Exp */
2/*
3 * Copyright (c) 1983, 1988, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
1/* BSDI inet.c,v 2.3 1995/10/24 02:19:29 prb Exp */
2/*
3 * Copyright (c) 1983, 1988, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * $FreeBSD: head/usr.bin/netstat/inet6.c 74453 2001-03-19 08:51:56Z phk $
34 * $FreeBSD: head/usr.bin/netstat/inet6.c 77565 2001-06-01 02:28:15Z dd $
35 */
36
37#ifndef lint
38/*
39static char sccsid[] = "@(#)inet6.c 8.4 (Berkeley) 4/20/94";
40*/
41#endif /* not lint */
42

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

675 "#126",
676 "#127",
677 "echo",
678 "echo reply",
679 "multicast listener query",
680 "multicast listener report",
681 "multicast listener done",
682 "router solicitation",
35 */
36
37#ifndef lint
38/*
39static char sccsid[] = "@(#)inet6.c 8.4 (Berkeley) 4/20/94";
40*/
41#endif /* not lint */
42

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

675 "#126",
676 "#127",
677 "echo",
678 "echo reply",
679 "multicast listener query",
680 "multicast listener report",
681 "multicast listener done",
682 "router solicitation",
683 "router advertisment",
683 "router advertisement",
684 "neighbor solicitation",
684 "neighbor solicitation",
685 "neighbor advertisment",
685 "neighbor advertisement",
686 "redirect",
687 "router renumbering",
688 "node information request",
689 "node information reply",
690 "#141",
691 "#142",
692 "#143",
693 "#144",

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

846 if (icmp6stat.icp6s_inhist[i] != 0) {
847 if (first) {
848 printf("\tInput histogram:\n");
849 first = 0;
850 }
851 printf("\t\t%s: %llu\n", icmp6names[i],
852 (unsigned long long)icmp6stat.icp6s_inhist[i]);
853 }
686 "redirect",
687 "router renumbering",
688 "node information request",
689 "node information reply",
690 "#141",
691 "#142",
692 "#143",
693 "#144",

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

846 if (icmp6stat.icp6s_inhist[i] != 0) {
847 if (first) {
848 printf("\tInput histogram:\n");
849 first = 0;
850 }
851 printf("\t\t%s: %llu\n", icmp6names[i],
852 (unsigned long long)icmp6stat.icp6s_inhist[i]);
853 }
854 printf("\tHistgram of error messages to be generated:\n");
854 printf("\tHistogram of error messages to be generated:\n");
855 p_5(icp6s_odst_unreach_noroute, "\t\t%llu no route\n");
856 p_5(icp6s_odst_unreach_admin, "\t\t%llu administratively prohibited\n");
857 p_5(icp6s_odst_unreach_beyondscope, "\t\t%llu beyond scope\n");
858 p_5(icp6s_odst_unreach_addr, "\t\t%llu address unreachable\n");
859 p_5(icp6s_odst_unreach_noport, "\t\t%llu port unreachable\n");
860 p_5(icp6s_opacket_too_big, "\t\t%llu packet too big\n");
861 p_5(icp6s_otime_exceed_transit, "\t\t%llu time exceed transit\n");
862 p_5(icp6s_otime_exceed_reassembly, "\t\t%llu time exceed reassembly\n");

--- 188 unchanged lines hidden ---
855 p_5(icp6s_odst_unreach_noroute, "\t\t%llu no route\n");
856 p_5(icp6s_odst_unreach_admin, "\t\t%llu administratively prohibited\n");
857 p_5(icp6s_odst_unreach_beyondscope, "\t\t%llu beyond scope\n");
858 p_5(icp6s_odst_unreach_addr, "\t\t%llu address unreachable\n");
859 p_5(icp6s_odst_unreach_noport, "\t\t%llu port unreachable\n");
860 p_5(icp6s_opacket_too_big, "\t\t%llu packet too big\n");
861 p_5(icp6s_otime_exceed_transit, "\t\t%llu time exceed transit\n");
862 p_5(icp6s_otime_exceed_reassembly, "\t\t%llu time exceed reassembly\n");

--- 188 unchanged lines hidden ---