]> git.saurik.com Git - apple/network_cmds.git/blobdiff - netstat.tproj/mroute.c
network_cmds-356.9.tar.gz
[apple/network_cmds.git] / netstat.tproj / mroute.c
index ec1e2700a093b8b037a72f9102612dc32b53c29a..04a9fe56d03bdc23544212d7cbf1bca5deb87fe6 100644 (file)
@@ -1,25 +1,29 @@
 /*
- * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2008-2009 Apple Inc. All rights reserved.
  *
- * @APPLE_LICENSE_HEADER_START@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
  * 
- * "Portions Copyright (c) 1999 Apple Computer, Inc.  All Rights
- * Reserved.  This file contains Original Code and/or Modifications of
- * Original Code as defined in and that are subject to the Apple Public
- * Source License Version 1.0 (the 'License').  You may not use this file
- * except in compliance with the License.  Please obtain a copy of the
- * License at http://www.apple.com/publicsource and read it before using
- * this file.
+ * This file contains Original Code and/or Modifications of Original Code
+ * as defined in and that are subject to the Apple Public Source License
+ * Version 2.0 (the 'License'). You may not use this file except in
+ * compliance with the License. The rights granted to you under the License
+ * may not be used to create, or enable the creation or redistribution of,
+ * unlawful or unlicensed copies of an Apple operating system, or to
+ * circumvent, violate, or enable the circumvention or violation of, any
+ * terms of an Apple operating system software license agreement.
  * 
+ * Please obtain a copy of the License at
+ * http://www.opensource.apple.com/apsl/ and read it before using this file.
+ *
  * The Original Code and all software distributed under the License are
  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
- * License for the specific language governing rights and limitations
- * under the License."
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
+ * Please see the License for the specific language governing rights and
+ * limitations under the License.
  * 
- * @APPLE_LICENSE_HEADER_END@
+ * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
  */
 /*
  * Copyright (c) 1989 Stephen Deering
@@ -103,7 +107,7 @@ mroutepr(void)
 
        len = CONFIG_MAXVIFS * sizeof(struct vif);
        if (sysctlbyname("net.inet.ip.viftable", viftable, &len, 0, 0) == -1) {
-               printf("No IPv4 multicast routing compiled into this system.\n");
+               //printf("No IPv4 multicast routing compiled into this system.\n");
                return;
        }
 
@@ -127,20 +131,20 @@ mroutepr(void)
                printf(" %-15.15s", (v->v_flags & VIFF_TUNNEL) ?
                    routename(v->v_rmt_addr.s_addr) : "");
 
-               printf(" %9lu  %9lu\n", v->v_pkt_in, v->v_pkt_out);
+               printf(" %9u  %9u\n", v->v_pkt_in, v->v_pkt_out);
        }
        if (!banner_printed)
                printf("\nVirtual Interface Table is empty\n");
 
        if (sysctlbyname("net.inet.ip.mfctable", 0, &len, 0, 0) == -1) {
-               printf("No IPv4 multicast routing compiled into this system.\n");
+               //printf("No IPv4 multicast routing compiled into this system.\n");
                return;
        }
        mfctable = malloc(len);
        if (mfctable == 0)
                return;
        if (sysctlbyname("net.inet.ip.mfctable", mfctable, &len, 0, 0) == -1) {
-               printf("No IPv4 multicast routing compiled into this system.\n");
+               //printf("No IPv4 multicast routing compiled into this system.\n");
                return;
        }
        banner_printed = 0;
@@ -156,7 +160,7 @@ mroutepr(void)
 
                        printf(" %-15.15s", routename(m->mfc_origin.s_addr));
                        printf(" %-15.15s", routename(m->mfc_mcastgrp.s_addr));
-                       printf(" %9lu", m->mfc_pkt_cnt);
+                       printf(" %9u", m->mfc_pkt_cnt);
                        printf("  %3d   ", m->mfc_parent);
                        for (vifi = 0; vifi <= maxvif; vifi++) {
                                if (m->mfc_ttls[vifi] > 0)
@@ -184,7 +188,7 @@ mrt_stats()
        size_t len = sizeof(struct mrtstat);
 
        if(sysctlbyname("net.inet.ip.mrtstat", &mrtstat, &len, 0, 0) == -1) {
-               printf("No IPv4 multicast routing compiled into this system.\n");
+               //printf("No IPv4 multicast routing compiled into this system.\n");
                return;
        }