5 * Copyright (C) 2007-2009 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 struct connman_ipconfig {
32 enum connman_ipconfig_method method;
36 * connman_ipconfig_create:
38 * Allocate a new ipconfig structure.
40 * Returns: a newly-allocated #connman_ipconfig structure
42 struct connman_ipconfig *connman_ipconfig_create(void)
44 struct connman_ipconfig *ipconfig;
48 ipconfig = g_try_new0(struct connman_ipconfig, 1);
52 DBG("ipconfig %p", ipconfig);
58 * connman_ipconfig_ref:
59 * @ipconfig: ipconfig structure
61 * Increase reference counter of ipconfig
63 struct connman_ipconfig *connman_ipconfig_ref(struct connman_ipconfig *ipconfig)
65 g_atomic_int_inc(&ipconfig->refcount);
71 * connman_ipconfig_unref:
72 * @ipconfig: ipconfig structure
74 * Decrease reference counter of ipconfig
76 void connman_ipconfig_unref(struct connman_ipconfig *ipconfig)
78 if (g_atomic_int_dec_and_test(&ipconfig->refcount) == TRUE) {
84 * connman_ipconfig_set_method:
85 * @ipconfig: ipconfig structure
86 * @method: configuration method
88 * Set the configuration method
90 int connman_ipconfig_set_method(struct connman_ipconfig *ipconfig,
91 enum connman_ipconfig_method method)
93 ipconfig->method = method;
98 const char *__connman_ipconfig_method2string(enum connman_ipconfig_method method)
101 case CONNMAN_IPCONFIG_METHOD_UNKNOWN:
103 case CONNMAN_IPCONFIG_METHOD_OFF:
105 case CONNMAN_IPCONFIG_METHOD_STATIC:
107 case CONNMAN_IPCONFIG_METHOD_DHCP:
114 enum connman_ipconfig_method __connman_ipconfig_string2method(const char *method)
116 if (g_strcmp0(method, "off") == 0)
117 return CONNMAN_IPCONFIG_METHOD_OFF;
118 else if (g_strcmp0(method, "static") == 0)
119 return CONNMAN_IPCONFIG_METHOD_STATIC;
120 else if (g_strcmp0(method, "dhcp") == 0)
121 return CONNMAN_IPCONFIG_METHOD_DHCP;
123 return CONNMAN_IPCONFIG_METHOD_UNKNOWN;
126 static void append_variant(DBusMessageIter *iter, const char *prefix,
127 const char *key, int type, void *val)
131 if (prefix == NULL) {
132 connman_dbus_dict_append_variant(iter, key, type, val);
136 str = g_strdup_printf("%s%s", prefix, key);
138 connman_dbus_dict_append_variant(iter, str, type, val);
143 void __connman_ipconfig_append_ipv4(struct connman_ipconfig *ipconfig,
144 DBusMessageIter *iter, const char *prefix)
148 str = __connman_ipconfig_method2string(ipconfig->method);
152 append_variant(iter, prefix, "Method", DBUS_TYPE_STRING, &str);
155 int __connman_ipconfig_set_ipv4(struct connman_ipconfig *ipconfig,
156 const char *key, DBusMessageIter *value)
158 int type = dbus_message_iter_get_arg_type(value);
160 DBG("ipconfig %p key %s type %d", ipconfig, key, type);
162 if (g_strcmp0(key, "Method") == 0) {
165 if (type != DBUS_TYPE_STRING)
168 dbus_message_iter_get_basic(value, &method);
170 ipconfig->method = __connman_ipconfig_string2method(method);
177 int __connman_ipconfig_load(struct connman_ipconfig *ipconfig,
178 GKeyFile *keyfile, const char *identifier, const char *prefix)
180 DBG("ipconfig %p identifier %s", ipconfig, identifier);
185 int __connman_ipconfig_save(struct connman_ipconfig *ipconfig,
186 GKeyFile *keyfile, const char *identifier, const char *prefix)
188 DBG("ipconfig %p identifier %s", ipconfig, identifier);
193 static GSList *driver_list = NULL;
195 static gint compare_priority(gconstpointer a, gconstpointer b)
197 const struct connman_ipconfig_driver *driver1 = a;
198 const struct connman_ipconfig_driver *driver2 = b;
200 return driver2->priority - driver1->priority;
204 * connman_ipconfig_driver_register:
205 * @driver: IP configuration driver
207 * Register a new IP configuration driver
209 * Returns: %0 on success
211 int connman_ipconfig_driver_register(struct connman_ipconfig_driver *driver)
213 DBG("driver %p name %s", driver, driver->name);
215 driver_list = g_slist_insert_sorted(driver_list, driver,
222 * connman_ipconfig_driver_unregister:
223 * @driver: IP configuration driver
225 * Remove a previously registered IP configuration driver.
227 void connman_ipconfig_driver_unregister(struct connman_ipconfig_driver *driver)
229 DBG("driver %p name %s", driver, driver->name);
231 driver_list = g_slist_remove(driver_list, driver);