diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2007-12-22 22:36:10 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2007-12-22 22:36:10 +0100 |
commit | 0446b9206238e24a5019483a2e2aea27d41f75dc (patch) | |
tree | 13367cb9fea9f4a137470e9ee9456ff60a729e67 /src/dhcp.c | |
parent | 369edde7e8054b798f9a70d20f98864a1f324e05 (diff) | |
download | connman-0446b9206238e24a5019483a2e2aea27d41f75dc.tar.gz connman-0446b9206238e24a5019483a2e2aea27d41f75dc.tar.bz2 connman-0446b9206238e24a5019483a2e2aea27d41f75dc.zip |
Add basic DHCP infrastructure
Diffstat (limited to 'src/dhcp.c')
-rw-r--r-- | src/dhcp.c | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/dhcp.c b/src/dhcp.c new file mode 100644 index 00000000..5a6e5c9b --- /dev/null +++ b/src/dhcp.c @@ -0,0 +1,66 @@ +/* + * + * 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 + * + */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <glib.h> + +#include "connman.h" + +static GSList *drivers = NULL; + +int connman_dhcp_register(struct connman_dhcp_driver *driver) +{ + DBG("driver %p", driver); + + drivers = g_slist_append(drivers, driver); + + return 0; +} + +void connman_dhcp_unregister(struct connman_dhcp_driver *driver) +{ + DBG("driver %p", driver); + + drivers = g_slist_remove(drivers, driver); +} + +int __connman_dhcp_request(struct connman_iface *iface) +{ + struct connman_dhcp_driver *driver = g_slist_nth_data(drivers, 0); + + if (driver && driver->request) + return driver->request(iface); + + return -1; +} + +int __connman_dhcp_release(struct connman_iface *iface) +{ + struct connman_dhcp_driver *driver = g_slist_nth_data(drivers, 0); + + if (driver && driver->release) + return driver->release(iface); + + return -1; +} |