From 5473c7d734f0a9f9873ef544fd4928499815c27f Mon Sep 17 00:00:00 2001 From: David Schweikert Date: Tue, 28 Jul 2020 16:21:29 +0200 Subject: [PATCH] remove unused host_entry fields --- src/fping.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/fping.c b/src/fping.c index 605e834..da0bfd9 100644 --- a/src/fping.c +++ b/src/fping.c @@ -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 */