Add first attempt for the property system
[connman] / plugins / ipv4.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2008  Intel Corporation. All rights reserved.
6  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <connman/plugin.h>
27 #include <connman/driver.h>
28 #include <connman/log.h>
29
30 static int ipv4_probe(struct connman_element *element)
31 {
32         const char *address = NULL, *netmask = NULL, *gateway = NULL;
33
34         DBG("element %p name %s", element, element->name);
35
36         connman_element_get_value(element,
37                                 CONNMAN_PROPERTY_TYPE_IPV4_ADDRESS, &address);
38         connman_element_get_value(element,
39                                 CONNMAN_PROPERTY_TYPE_IPV4_NETMASK, &netmask);
40         connman_element_get_value(element,
41                                 CONNMAN_PROPERTY_TYPE_IPV4_GATEWAY, &gateway);
42
43         DBG("address %s", address);
44         DBG("netmask %s", netmask);
45         DBG("gateway %s", gateway);
46
47         return 0;
48 }
49
50 static void ipv4_remove(struct connman_element *element)
51 {
52         DBG("element %p name %s", element, element->name);
53 }
54
55 static struct connman_driver ipv4_driver = {
56         .name           = "ipv4",
57         .type           = CONNMAN_ELEMENT_TYPE_IPV4,
58         .probe          = ipv4_probe,
59         .remove         = ipv4_remove,
60 };
61
62 static int ipv4_init(void)
63 {
64         return connman_driver_register(&ipv4_driver);
65 }
66
67 static void ipv4_exit(void)
68 {
69         connman_driver_unregister(&ipv4_driver);
70 }
71
72 CONNMAN_PLUGIN_DEFINE("ipv4", "IPv4 configuration plugin", VERSION,
73                                                         ipv4_init, ipv4_exit)