gdhcp: Fix build failure
[framework/connectivity/connman.git] / gdhcp / gdhcp.h
1 /*
2  *
3  *  DHCP library with GLib integration
4  *
5  *  Copyright (C) 2009-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 #ifndef __G_DHCP_H
23 #define __G_DHCP_H
24
25 #include <stdint.h>
26
27 #include <glib.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 /* DHCP Client part*/
34 struct _GDHCPClient;
35
36 typedef struct _GDHCPClient GDHCPClient;
37
38 typedef enum {
39         G_DHCP_CLIENT_ERROR_NONE,
40         G_DHCP_CLIENT_ERROR_INTERFACE_UNAVAILABLE,
41         G_DHCP_CLIENT_ERROR_INTERFACE_IN_USE,
42         G_DHCP_CLIENT_ERROR_INTERFACE_DOWN,
43         G_DHCP_CLIENT_ERROR_NOMEM,
44         G_DHCP_CLIENT_ERROR_INVALID_INDEX,
45         G_DHCP_CLIENT_ERROR_INVALID_OPTION
46 } GDHCPClientError;
47
48 typedef enum {
49         G_DHCP_CLIENT_EVENT_LEASE_AVAILABLE,
50         G_DHCP_CLIENT_EVENT_IPV4LL_AVAILABLE,
51         G_DHCP_CLIENT_EVENT_NO_LEASE,
52         G_DHCP_CLIENT_EVENT_LEASE_LOST,
53         G_DHCP_CLIENT_EVENT_IPV4LL_LOST,
54         G_DHCP_CLIENT_EVENT_ADDRESS_CONFLICT,
55         G_DHCP_CLIENT_EVENT_INFORMATION_REQ,
56         G_DHCP_CLIENT_EVENT_SOLICITATION,
57         G_DHCP_CLIENT_EVENT_ADVERTISE,
58         G_DHCP_CLIENT_EVENT_REQUEST,
59         G_DHCP_CLIENT_EVENT_RENEW,
60         G_DHCP_CLIENT_EVENT_REBIND,
61         G_DHCP_CLIENT_EVENT_RELEASE,
62 } GDHCPClientEvent;
63
64 typedef enum {
65         G_DHCP_IPV4,
66         G_DHCP_IPV6,
67         G_DHCP_IPV4LL,
68 } GDHCPType;
69
70 #define G_DHCP_SUBNET           0x01
71 #define G_DHCP_ROUTER           0x03
72 #define G_DHCP_TIME_SERVER      0x04
73 #define G_DHCP_DNS_SERVER       0x06
74 #define G_DHCP_DOMAIN_NAME      0x0f
75 #define G_DHCP_HOST_NAME        0x0c
76 #define G_DHCP_NTP_SERVER       0x2a
77
78 #define G_DHCPV6_CLIENTID       1
79 #define G_DHCPV6_SERVERID       2
80 #define G_DHCPV6_IA_NA          3
81 #define G_DHCPV6_IA_TA          4
82 #define G_DHCPV6_IAADDR         5
83 #define G_DHCPV6_ORO            6
84 #define G_DHCPV6_STATUS_CODE    13
85 #define G_DHCPV6_RAPID_COMMIT   14
86 #define G_DHCPV6_DNS_SERVERS    23
87 #define G_DHCPV6_SNTP_SERVERS   31
88
89 #define G_DHCPV6_ERROR_SUCCESS  0
90 #define G_DHCPV6_ERROR_FAILURE  1
91 #define G_DHCPV6_ERROR_NO_ADDR  2
92 #define G_DHCPV6_ERROR_BINDING  3
93 #define G_DHCPV6_ERROR_LINK     4
94 #define G_DHCPV6_ERROR_MCAST    5
95
96 typedef enum {
97         G_DHCPV6_DUID_LLT = 1,
98         G_DHCPV6_DUID_EN  = 2,
99         G_DHCPV6_DUID_LL  = 3,
100 } GDHCPDuidType;
101
102 typedef void (*GDHCPClientEventFunc) (GDHCPClient *client, gpointer user_data);
103
104 typedef void (*GDHCPDebugFunc)(const char *str, gpointer user_data);
105
106 GDHCPClient *g_dhcp_client_new(GDHCPType type, int index,
107                                                 GDHCPClientError *error);
108
109 int g_dhcp_client_start(GDHCPClient *client, const char *last_address);
110 void g_dhcp_client_stop(GDHCPClient *client);
111
112 GDHCPClient *g_dhcp_client_ref(GDHCPClient *client);
113 void g_dhcp_client_unref(GDHCPClient *client);
114
115 void g_dhcp_client_register_event(GDHCPClient *client,
116                                         GDHCPClientEvent event,
117                                         GDHCPClientEventFunc func,
118                                         gpointer user_data);
119
120 GDHCPClientError g_dhcp_client_set_request(GDHCPClient *client,
121                                                 unsigned int option_code);
122 void g_dhcp_client_clear_requests(GDHCPClient *dhcp_client);
123 void g_dhcp_client_clear_values(GDHCPClient *dhcp_client);
124 GDHCPClientError g_dhcp_client_set_send(GDHCPClient *client,
125                                                 unsigned char option_code,
126                                                 const char *option_value);
127
128 char *g_dhcp_client_get_address(GDHCPClient *client);
129 char *g_dhcp_client_get_netmask(GDHCPClient *client);
130 GList *g_dhcp_client_get_option(GDHCPClient *client,
131                                                 unsigned char option_code);
132 int g_dhcp_client_get_index(GDHCPClient *client);
133
134 void g_dhcp_client_set_debug(GDHCPClient *client,
135                                 GDHCPDebugFunc func, gpointer user_data);
136 int g_dhcpv6_create_duid(GDHCPDuidType duid_type, int index, int type,
137                         unsigned char **duid, int *duid_len);
138 int g_dhcpv6_client_set_duid(GDHCPClient *dhcp_client, unsigned char *duid,
139                         int duid_len);
140 void g_dhcpv6_client_set_send(GDHCPClient *dhcp_client, uint16_t option_code,
141                         uint8_t *option_value, uint16_t option_len);
142 uint16_t g_dhcpv6_client_get_status(GDHCPClient *dhcp_client);
143 int g_dhcpv6_client_set_oro(GDHCPClient *dhcp_client, int args, ...);
144 void g_dhcpv6_client_create_iaid(GDHCPClient *dhcp_client, int index,
145                                 unsigned char *iaid);
146 int g_dhcpv6_client_get_timeouts(GDHCPClient *dhcp_client,
147                                 uint32_t *T1, uint32_t *T2,
148                                 time_t *last_renew, time_t *last_rebind,
149                                 time_t *expire);
150 uint32_t g_dhcpv6_client_get_iaid(GDHCPClient *dhcp_client);
151 int g_dhcpv6_client_set_ia(GDHCPClient *dhcp_client, int index,
152                 int code, uint32_t *T1, uint32_t *T2, gboolean add_iaaddr);
153 void g_dhcpv6_client_reset_renew(GDHCPClient *dhcp_client);
154 void g_dhcpv6_client_reset_rebind(GDHCPClient *dhcp_client);
155 void g_dhcpv6_client_set_expire(GDHCPClient *dhcp_client, uint32_t timeout);
156
157 /* DHCP Server */
158 typedef enum {
159         G_DHCP_SERVER_ERROR_NONE,
160         G_DHCP_SERVER_ERROR_INTERFACE_UNAVAILABLE,
161         G_DHCP_SERVER_ERROR_INTERFACE_IN_USE,
162         G_DHCP_SERVER_ERROR_INTERFACE_DOWN,
163         G_DHCP_SERVER_ERROR_NOMEM,
164         G_DHCP_SERVER_ERROR_INVALID_INDEX,
165         G_DHCP_SERVER_ERROR_INVALID_OPTION,
166         G_DHCP_SERVER_ERROR_IP_ADDRESS_INVALID
167 } GDHCPServerError;
168
169 typedef void (*GDHCPSaveLeaseFunc) (unsigned char *mac,
170                         unsigned int nip, unsigned int expire);
171 struct _GDHCPServer;
172
173 typedef struct _GDHCPServer GDHCPServer;
174
175 GDHCPServer *g_dhcp_server_new(GDHCPType type,
176                 int ifindex, GDHCPServerError *error);
177 int g_dhcp_server_start(GDHCPServer *server);
178 void g_dhcp_server_stop(GDHCPServer *server);
179
180 GDHCPServer *g_dhcp_server_ref(GDHCPServer *server);
181 void g_dhcp_server_unref(GDHCPServer *server);
182
183 int g_dhcp_server_set_option(GDHCPServer *server,
184                 unsigned char option_code, const char *option_value);
185 int g_dhcp_server_set_ip_range(GDHCPServer *server,
186                 const char *start_ip, const char *end_ip);
187 void g_dhcp_server_load_lease(GDHCPServer *dhcp_server, unsigned int expire,
188                                 unsigned char *mac, unsigned int lease_ip);
189 void g_dhcp_server_set_debug(GDHCPServer *server,
190                                 GDHCPDebugFunc func, gpointer user_data);
191 void g_dhcp_server_set_lease_time(GDHCPServer *dhcp_server,
192                                                 unsigned int lease_time);
193 void g_dhcp_server_set_save_lease(GDHCPServer *dhcp_server,
194                                 GDHCPSaveLeaseFunc func, gpointer user_data);
195 #ifdef __cplusplus
196 }
197 #endif
198
199 #endif /* __G_DHCP_H */