summaryrefslogtreecommitdiffstats
path: root/arp.h
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-05-10 09:39:26 +0000
committerRoy Marples <roy@marples.name>2007-05-10 09:39:26 +0000
commit4549f7a4ddb698e3023816909f4899b6dc771904 (patch)
tree0d76fe86bf8190d8bf4922a4a6de66fd05632a7a /arp.h
parent233ad2c3cee34e1dd2e0f0e9ecf8e24034b1f739 (diff)
downloaddhcpcd-4549f7a4ddb698e3023816909f4899b6dc771904.tar.xz
config.h now has the compile time options, instead of being dotted around.
Added -E option, which reads the last info file and uses the information there if we timeout and the lease is still valid, thanks to Roberto Angelino.
Diffstat (limited to 'arp.h')
-rw-r--r--arp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arp.h b/arp.h
index 25563c60..bb424748 100644
--- a/arp.h
+++ b/arp.h
@@ -20,10 +20,12 @@
#ifndef ARP_H
#define ARP_H
+#ifdef ENABLE_ARP
#include <netinet/in.h>
#include "interface.h"
int arp_check (interface_t *iface, struct in_addr address);
+#endif
#endif