2e07c7ffed137792aa4eb028e16a772b18c1b48b
[platform/upstream/connman.git] / plugins / dhcp.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2010  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 #define CONNMAN_API_SUBJECT_TO_CHANGE
27 #include <connman/plugin.h>
28 #include <connman/dhcp.h>
29 #include <connman/log.h>
30
31 static int dhcp_request(struct connman_dhcp *dhcp)
32 {
33         DBG("dhcp %p", dhcp);
34
35         return -1;
36 }
37
38 static int dhcp_release(struct connman_dhcp *dhcp)
39 {
40         DBG("dhcp %p", dhcp);
41
42         return -1;
43 }
44
45 static struct connman_dhcp_driver dhcp_driver = {
46         .name           = "dhcp",
47         .priority       = CONNMAN_DHCP_PRIORITY_LOW,
48         .request        = dhcp_request,
49         .release        = dhcp_release,
50 };
51
52 static int dhcp_init(void)
53 {
54         return connman_dhcp_driver_register(&dhcp_driver);
55 }
56
57 static void dhcp_exit(void)
58 {
59         connman_dhcp_driver_unregister(&dhcp_driver);
60 }
61
62 CONNMAN_PLUGIN_DEFINE(dhcp, "Generic DHCP plugin", VERSION,
63                         CONNMAN_PLUGIN_PRIORITY_LOW, dhcp_init, dhcp_exit)