tcpconns plugin: Removed legacy variables.
authorFlorian Forster <octo@huhu.verplant.org>
Tue, 19 Aug 2008 05:42:07 +0000 (07:42 +0200)
committerFlorian Forster <octo@huhu.verplant.org>
Tue, 19 Aug 2008 05:42:07 +0000 (07:42 +0200)
`off' was forgotten and the global `nl' was already commented out.

src/tcpconns.c

index 4772c7c..fa1e393 100644 (file)
@@ -174,98 +174,6 @@ static kvm_t *kvmd;
 static u_long      inpcbtable_off = 0;
 struct inpcbtable *inpcbtable_ptr = NULL;
 
-#if 0
-static struct nlist nl[] = { /* {{{ */
-#define N_MBSTAT        0
-        { "_mbstat" },
-#define N_IPSTAT        1
-        { "_ipstat" },
-#define N_TCBTABLE      2
-        { "_tcbtable" },
-#define N_TCPSTAT       3
-        { "_tcpstat" },
-#define N_UDBTABLE      4
-        { "_udbtable" },
-#define N_UDPSTAT       5
-        { "_udpstat" },
-#define N_IFNET         6
-        { "_ifnet" },
-#define N_ICMPSTAT      7
-        { "_icmpstat" },
-#define N_RTSTAT        8
-        { "_rtstat" },
-#define N_UNIXSW        9
-        { "_unixsw" },
-#define N_RTREE         10
-        { "_rt_tables"},
-#define N_FILE          11
-        { "_file" },
-#define N_IGMPSTAT      12
-        { "_igmpstat" },
-#define N_MRTPROTO      13
-        { "_ip_mrtproto" },
-#define N_MRTSTAT       14
-        { "_mrtstat" },
-#define N_MFCHASHTBL    15
-        { "_mfchashtbl" },
-#define N_MFCHASH       16
-        { "_mfchash" },
-        { "_viftable" },
-#define N_AHSTAT        18
-        { "_ahstat"},
-#define N_ESPSTAT       19
-        { "_espstat"},
-#define N_IP4STAT       20
-        { "_ipipstat"},
-#define N_DDPSTAT       21
-        { "_ddpstat"},
-#define N_DDPCB         22
-        { "_ddpcb"},
-#define N_ETHERIPSTAT   23
-        { "_etheripstat"},
-#define N_IP6STAT       24
-        { "_ip6stat" },
-#define N_ICMP6STAT     25
-        { "_icmp6stat" },
-#define N_PIM6STAT      26
-        { "_pim6stat" },
-#define N_MRT6PROTO     27
-        { "_ip6_mrtproto" },
-#define N_MRT6STAT      28
-        { "_mrt6stat" },
-#define N_MF6CTABLE     29
-        { "_mf6ctable" },
-#define N_MIF6TABLE     30
-        { "_mif6table" },
-#define N_MBPOOL        31
-        { "_mbpool" },
-#define N_MCLPOOL       32
-        { "_mclpool" },
-#define N_IPCOMPSTAT    33
-        { "_ipcompstat" },
-#define N_RIP6STAT      34
-        { "_rip6stat" },
-#define N_CARPSTAT      35
-        { "_carpstats" },
-#define N_RAWIPTABLE    36
-        { "_rawcbtable" },
-#define N_RAWIP6TABLE   37
-        { "_rawin6pcbtable" },
-#define N_PFSYNCSTAT    38
-        { "_pfsyncstats" },
-#define N_PIMSTAT       39
-        { "_pimstat" },
-#define N_AF2RTAFIDX    40
-        { "_af2rtafidx" },
-#define N_RTBLIDMAX     41
-        { "_rtbl_id_max" },
-#define N_RTMASK        42
-        { "_mask_rnhead" },
-
-        { "" }
-}; /* }}} struct nlist nl[] */
-#endif /* 0 */
-
 # define TCP_STATE_LISTEN 1
 # define TCP_STATE_MIN 1
 # define TCP_STATE_MAX 10
@@ -743,7 +651,6 @@ static int conn_init (void)
 
 static int conn_read (void)
 {
-  u_long off = nl[2].n_value;
   struct inpcbtable table;
   struct inpcb *head;
   struct inpcb *next;