summaryrefslogtreecommitdiff
path: root/include/acd.h
diff options
context:
space:
mode:
authorChristian Spielberger <christian.spielberger@gmail.com>2018-05-15 12:35:14 +0200
committerDaniel Wagner <wagi@monom.org>2018-05-24 22:17:38 +0200
commitfb0fd658a85719a1d9733aa0d01c9a1b22a66ea5 (patch)
tree26bd8c313dde35fd950e4667b44651132a4e9f90 /include/acd.h
parent8689256d96f2e1b82b645eafad145345a9f18858 (diff)
downloadconnman-fb0fd658a85719a1d9733aa0d01c9a1b22a66ea5.tar.gz
acd: Add Address Conflict Detection support (RFC 5227)
Add first acd.h, acd.c, a configuration ACD on/off switch and a first version of start_acd in network.c which does nothing for the moment.
Diffstat (limited to 'include/acd.h')
-rw-r--r--include/acd.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/include/acd.h b/include/acd.h
new file mode 100644
index 00000000..baca508b
--- /dev/null
+++ b/include/acd.h
@@ -0,0 +1,39 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2018 Commend International. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ */
+
+/*
+ * Address Conflict Detection (RFC 5227)
+ *
+ * based on DHCP client library with GLib integration,
+ * Copyright (C) 2009-2014 Intel Corporation. All rights reserved.
+ *
+ */
+
+#ifndef __CONNMAN_ACD_H
+#define __CONNMAN_ACD_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct acd_host;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __CONNMAN_ACD_H */