summaryrefslogtreecommitdiff
path: root/include/dhcp.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-12-22 22:36:10 +0100
committerMarcel Holtmann <marcel@holtmann.org>2007-12-22 22:36:10 +0100
commit0446b9206238e24a5019483a2e2aea27d41f75dc (patch)
tree13367cb9fea9f4a137470e9ee9456ff60a729e67 /include/dhcp.h
parent369edde7e8054b798f9a70d20f98864a1f324e05 (diff)
downloadconnman-0446b9206238e24a5019483a2e2aea27d41f75dc.tar.gz
connman-0446b9206238e24a5019483a2e2aea27d41f75dc.tar.bz2
connman-0446b9206238e24a5019483a2e2aea27d41f75dc.zip
Add basic DHCP infrastructure
Diffstat (limited to 'include/dhcp.h')
-rw-r--r--include/dhcp.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/include/dhcp.h b/include/dhcp.h
new file mode 100644
index 00000000..337746b3
--- /dev/null
+++ b/include/dhcp.h
@@ -0,0 +1,44 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007 Intel Corporation. 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef __CONNMAN_DHCP_H
+#define __CONNMAN_DHCP_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <connman/iface.h>
+
+struct connman_dhcp_driver {
+ const char *name;
+ int (*request) (struct connman_iface *iface);
+ int (*release) (struct connman_iface *iface);
+};
+
+extern int connman_dhcp_register(struct connman_dhcp_driver *driver);
+extern void connman_dhcp_unregister(struct connman_dhcp_driver *driver);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __CONNMAN_DHCP_H */