X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Finet.h;h=09f84540226dcabc27bec04ae8ad26d9cfa533d4;hb=c647a4b6f1132684c9d8b8ad71ec38d81147b278;hp=2048de1acb0c243f14597ae839921a3ecbe019bf;hpb=ef636ec730a51d3468870546ab6844b270e5b79a;p=platform%2Fupstream%2Fconnman.git diff --git a/include/inet.h b/include/inet.h index 2048de1..09f8454 100644 --- a/include/inet.h +++ b/include/inet.h @@ -2,7 +2,7 @@ * * Connection Manager * - * Copyright (C) 2007-2012 Intel Corporation. All rights reserved. + * Copyright (C) 2007-2013 Intel Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as @@ -36,13 +36,13 @@ extern "C" { int connman_inet_ifindex(const char *name); char *connman_inet_ifname(int index); -short int connman_inet_ifflags(int index); - int connman_inet_ifup(int index); int connman_inet_ifdown(int index); +bool connman_inet_is_ifup(int index); -struct connman_device *connman_inet_create_device(int index); -connman_bool_t connman_inet_is_cfg80211(int index); +#if defined TIZEN_EXT +void connman_inet_update_device_ident(struct connman_device *device); +#endif int connman_inet_set_address(int index, struct connman_ipaddress *ipaddress); int connman_inet_clear_address(int index, struct connman_ipaddress *ipaddress); @@ -51,11 +51,11 @@ int connman_inet_del_host_route(int index, const char *host); int connman_inet_add_network_route(int index, const char *host, const char *gateway, const char *netmask); int connman_inet_del_network_route(int index, const char *host); -int connman_inet_set_gateway_address(int index, const char *gateway); int connman_inet_clear_gateway_address(int index, const char *gateway); int connman_inet_set_gateway_interface(int index); int connman_inet_clear_gateway_interface(int index); -connman_bool_t connman_inet_compare_subnet(int index, const char *host); +bool connman_inet_compare_subnet(int index, const char *host); +bool connman_inet_compare_ipv6_subnet(int index, const char *host); int connman_inet_set_ipv6_address(int index, struct connman_ipaddress *ipaddress); int connman_inet_clear_ipv6_address(int index, @@ -67,7 +67,6 @@ int connman_inet_add_ipv6_host_route(int index, const char *host, int connman_inet_del_ipv6_network_route(int index, const char *host, unsigned char prefix_len); int connman_inet_del_ipv6_host_route(int index, const char *host); -int connman_inet_set_ipv6_gateway_address(int index, const char *gateway); int connman_inet_clear_ipv6_gateway_address(int index, const char *gateway); int connman_inet_set_ipv6_gateway_interface(int index); int connman_inet_clear_ipv6_gateway_interface(int index); @@ -80,6 +79,14 @@ int connman_inet_setup_tunnel(char *tunnel, int mtu); int connman_inet_create_tunnel(char **iface); int connman_inet_get_dest_addr(int index, char **dest); int connman_inet_ipv6_get_dest_addr(int index, char **dest); +int connman_inet_check_ipaddress(const char *host); +bool connman_inet_check_hostname(const char *ptr, size_t len); +bool connman_inet_is_ipv6_supported(); + +#if defined TIZEN_EXT_WIFI_MESH +char *connman_inet_ifaddr(const char *name); +char *connman_inet_ifname2addr(const char *name); +#endif #ifdef __cplusplus }