X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgresolver.h;h=2950c9d01e01a2451c166ae38e022df4aba99372;hb=7fd6f07d498063470903a886b4805a13bd333908;hp=01243f1a3d6c48da5d8fe0921be31b83e38e85e9;hpb=e1b99b2ddcf21f5dab26ad74afa6935eaf70028e;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gresolver.h b/gio/gresolver.h index 01243f1..2950c9d 100644 --- a/gio/gresolver.h +++ b/gio/gresolver.h @@ -13,9 +13,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . */ #ifndef __G_RESOLVER_H__ @@ -115,44 +113,56 @@ struct _GResolverClass { }; +GLIB_AVAILABLE_IN_ALL GType g_resolver_get_type (void) G_GNUC_CONST; +GLIB_AVAILABLE_IN_ALL GResolver *g_resolver_get_default (void); +GLIB_AVAILABLE_IN_ALL void g_resolver_set_default (GResolver *resolver); +GLIB_AVAILABLE_IN_ALL GList *g_resolver_lookup_by_name (GResolver *resolver, const gchar *hostname, GCancellable *cancellable, GError **error); +GLIB_AVAILABLE_IN_ALL void g_resolver_lookup_by_name_async (GResolver *resolver, const gchar *hostname, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); +GLIB_AVAILABLE_IN_ALL GList *g_resolver_lookup_by_name_finish (GResolver *resolver, GAsyncResult *result, GError **error); +GLIB_AVAILABLE_IN_ALL void g_resolver_free_addresses (GList *addresses); +GLIB_AVAILABLE_IN_ALL gchar *g_resolver_lookup_by_address (GResolver *resolver, GInetAddress *address, GCancellable *cancellable, GError **error); +GLIB_AVAILABLE_IN_ALL void g_resolver_lookup_by_address_async (GResolver *resolver, GInetAddress *address, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); +GLIB_AVAILABLE_IN_ALL gchar *g_resolver_lookup_by_address_finish (GResolver *resolver, GAsyncResult *result, GError **error); +GLIB_AVAILABLE_IN_ALL GList *g_resolver_lookup_service (GResolver *resolver, const gchar *service, const gchar *protocol, const gchar *domain, GCancellable *cancellable, GError **error); +GLIB_AVAILABLE_IN_ALL void g_resolver_lookup_service_async (GResolver *resolver, const gchar *service, const gchar *protocol, @@ -160,6 +170,7 @@ void g_resolver_lookup_service_async (GResolver *resolver, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); +GLIB_AVAILABLE_IN_ALL GList *g_resolver_lookup_service_finish (GResolver *resolver, GAsyncResult *result, GError **error); @@ -182,6 +193,7 @@ GList *g_resolver_lookup_records_finish (GResolver *resolver, GAsyncResult *result, GError **error); +GLIB_AVAILABLE_IN_ALL void g_resolver_free_targets (GList *targets); /** @@ -192,6 +204,7 @@ void g_resolver_free_targets (GList *targets); * error domains. */ #define G_RESOLVER_ERROR (g_resolver_error_quark ()) +GLIB_AVAILABLE_IN_ALL GQuark g_resolver_error_quark (void); G_END_DECLS