9c1918f38300761e2240e6f45b47c56d0e30bb57
[platform/upstream/connman.git] / include / inet.h
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2013  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 __CONNMAN_INET_H
23 #define __CONNMAN_INET_H
24
25 #include <arpa/inet.h>
26 #include <linux/netlink.h>
27 #include <linux/rtnetlink.h>
28
29 #include <connman/device.h>
30 #include <connman/ipconfig.h>
31
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35
36 int connman_inet_ifindex(const char *name);
37 char *connman_inet_ifname(int index);
38
39 int connman_inet_ifup(int index);
40 int connman_inet_ifdown(int index);
41 bool connman_inet_is_ifup(int index);
42
43 int connman_inet_set_address(int index, struct connman_ipaddress *ipaddress);
44 int connman_inet_clear_address(int index, struct connman_ipaddress *ipaddress);
45 int connman_inet_add_host_route(int index, const char *host, const char *gateway);
46 int connman_inet_del_host_route(int index, const char *host);
47 int connman_inet_add_network_route(int index, const char *host, const char *gateway,
48                                         const char *netmask);
49 int connman_inet_del_network_route(int index, const char *host);
50 int connman_inet_clear_gateway_address(int index, const char *gateway);
51 int connman_inet_set_gateway_interface(int index);
52 int connman_inet_clear_gateway_interface(int index);
53 bool connman_inet_compare_subnet(int index, const char *host);
54 int connman_inet_set_ipv6_address(int index,
55                 struct connman_ipaddress *ipaddress);
56 int connman_inet_clear_ipv6_address(int index,
57                 const char *address, int prefix_len);
58 int connman_inet_add_ipv6_network_route(int index, const char *host,
59                                         const char *gateway, unsigned char prefix_len);
60 int connman_inet_add_ipv6_host_route(int index, const char *host,
61                                                 const char *gateway);
62 int connman_inet_del_ipv6_network_route(int index, const char *host,
63                                         unsigned char prefix_len);
64 int connman_inet_del_ipv6_host_route(int index, const char *host);
65 int connman_inet_clear_ipv6_gateway_address(int index, const char *gateway);
66 int connman_inet_set_ipv6_gateway_interface(int index);
67 int connman_inet_clear_ipv6_gateway_interface(int index);
68
69 int connman_inet_add_to_bridge(int index, const char *bridge);
70 int connman_inet_remove_from_bridge(int index, const char *bridge);
71
72 int connman_inet_set_mtu(int index, int mtu);
73 int connman_inet_setup_tunnel(char *tunnel, int mtu);
74 int connman_inet_create_tunnel(char **iface);
75 int connman_inet_get_dest_addr(int index, char **dest);
76 int connman_inet_ipv6_get_dest_addr(int index, char **dest);
77 int connman_inet_check_ipaddress(const char *host);
78 bool connman_inet_check_hostname(const char *ptr, size_t len);
79 bool connman_inet_is_ipv6_supported();
80
81 #ifdef __cplusplus
82 }
83 #endif
84
85 #endif /* __CONNMAN_INET_H */