slirp: Drop statistic code
[qemu] / slirp / udp.h
index d4c2bea..3eed14a 100644 (file)
@@ -67,32 +67,12 @@ struct udpiphdr {
 #define ui_ulen         ui_u.uh_ulen
 #define ui_sum          ui_u.uh_sum
 
-#ifdef LOG_ENABLED
-struct udpstat {
-                                       /* input statistics: */
-               u_long  udps_ipackets;          /* total input packets */
-               u_long  udps_hdrops;            /* packet shorter than header */
-               u_long  udps_badsum;            /* checksum error */
-               u_long  udps_badlen;            /* data length larger than packet */
-               u_long  udps_noport;            /* no socket on port */
-               u_long  udps_noportbcast;       /* of above, arrived as broadcast */
-               u_long  udps_fullsock;          /* not delivered, input socket full */
-               u_long  udpps_pcbcachemiss;     /* input packets missing pcb cache */
-                                       /* output statistics: */
-               u_long  udps_opackets;          /* total output packets */
-};
-#endif
-
 /*
  * Names for UDP sysctl objects
  */
 #define UDPCTL_CHECKSUM         1       /* checksum UDP packets */
 #define UDPCTL_MAXID            2
 
-#ifdef LOG_ENABLED
-extern struct udpstat udpstat;
-#endif
-
 extern struct socket udb;
 struct mbuf;