]> git.saurik.com Git - apple/network_cmds.git/blobdiff - netstat.tproj/systm.c
network_cmds-596.100.2.tar.gz
[apple/network_cmds.git] / netstat.tproj / systm.c
index a3c170e1caeb60b6de059640611cde94ac5b7560..3e076ca7b28b56b300dc524d4753e0a5543a6338 100644 (file)
@@ -363,7 +363,11 @@ kctl_stats(uint32_t off __unused, char *name, int af __unused)
        p(kcs_send_list_fail, "\t%llu send list failure%s\n");
        p(kcs_enqueue_fail, "\t%llu enqueue failure%s\n");
        p(kcs_enqueue_fullsock, "\t%llu packet%s dropped due to full socket buffers\n");
-       
+       p(kcs_bad_kctlref, "\t%llu failure%s with bad kern_ctl_ref\n");
+       p(kcs_tbl_size_too_big, "\t%llu register failure%s because of too many kern_ctl_ref\n");
+       p(kcs_enqdata_mb_alloc_fail, "\t%llu enqueuedata failure%s because could not allocate a packet\n");
+       p(kcs_enqdata_sbappend_fail, "\t%llu enqueuedata failure%s due to full socket buffers\n");
+
 #undef STATDIFF
 #undef p
 #undef p1a
@@ -377,7 +381,7 @@ kevt_stats(uint32_t off __unused, char *name, int af __unused)
 {
        static struct kevtstat pkevtstat;
        struct kevtstat kevtstat;
-       size_t len = sizeof(struct kctlstat);
+       size_t len = sizeof(struct kevtstat);
        const char *mibvar = "net.systm.kevt.stats";
        
        if (sysctlbyname(mibvar, &kevtstat, &len, 0, 0) < 0) {