summaryrefslogtreecommitdiffstats
path: root/arp.h
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-09-03 16:49:28 +0000
committerRoy Marples <roy@marples.name>2008-09-03 16:49:28 +0000
commitf43e585355e50bd2e7021380db6fc792662f76be (patch)
treed81565b32d67516b6ae178bcdbff09bda3251b45 /arp.h
parentf0c98483e7369f2df38edc352433239fa24f6a2f (diff)
downloaddhcpcd-f43e585355e50bd2e7021380db6fc792662f76be.tar.xz
Add a control socket so that interfaces can be dynamically re-set.
This requires the event loop argument being changed to void * so we can send arguments other than an interface.
Diffstat (limited to 'arp.h')
-rw-r--r--arp.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/arp.h b/arp.h
index 3cfe55a7..c9bc9e49 100644
--- a/arp.h
+++ b/arp.h
@@ -28,8 +28,6 @@
#ifndef ARP_H
#define ARP_H
-#include "dhcpcd.h"
-
/* These are for IPV4LL, RFC 3927.
* We put them here as we use the timings for all ARP foo. */
#define PROBE_WAIT 1
@@ -43,7 +41,6 @@
#define RATE_LIMIT_INTERVAL 60
#define DEFEND_INTERVAL 10
-void send_arp_announce(struct interface *);
-void send_arp_probe(struct interface *);
-void handle_arp_packet(struct interface *);
+void send_arp_announce(void *);
+void send_arp_probe(void *);
#endif