]> git.gsnw.org Git - fping.git/commitdiff
remove unused host_entry fields
authorDavid Schweikert <david@schweikert.ch>
Tue, 28 Jul 2020 14:21:29 +0000 (16:21 +0200)
committerDavid Schweikert <david@schweikert.ch>
Tue, 28 Jul 2020 14:21:29 +0000 (16:21 +0200)
src/fping.c

index 605e834401f93e02f2b1b022b08424883ec609ed..da0bfd9cf1f188cbedf111fb0e45b0dd860ecc0c 100644 (file)
@@ -205,13 +205,6 @@ char* icmp_unreach_str[16] = {
 
 struct event;
 typedef struct host_entry {
-    /* Each host can have an event attached: either the next time that a ping needs
-      * to be sent, or the timeout, if the last ping was sent */
-    struct host_entry* ev_prev; /* double linked list for the event-queue */
-    struct host_entry* ev_next; /* double linked list for the event-queue */
-    struct timespec ev_time; /* time, after which this event should happen */
-    int ev_type; /* event type */
-
     int i; /* index into array */
     char* name; /* name as given by user */
     char* host; /* text description of host */