diff options
| author | Roy Marples <roy@marples.name> | 2008-09-03 16:49:28 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2008-09-03 16:49:28 +0000 |
| commit | f43e585355e50bd2e7021380db6fc792662f76be (patch) | |
| tree | d81565b32d67516b6ae178bcdbff09bda3251b45 /arp.h | |
| parent | f0c98483e7369f2df38edc352433239fa24f6a2f (diff) | |
| download | dhcpcd-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.h | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -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 |
