2008-12-29 18:53:47 +01:00
|
|
|
/* GIO - GLib Input, Output and Streaming Library
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General
|
2014-01-23 12:58:29 +01:00
|
|
|
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2008-12-29 18:53:47 +01:00
|
|
|
*/
|
|
|
|
|
2012-12-28 05:43:14 +01:00
|
|
|
#ifndef __G_RESOLVER_H__
|
|
|
|
#define __G_RESOLVER_H__
|
|
|
|
|
2008-12-29 18:53:47 +01:00
|
|
|
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
|
|
|
|
#error "Only <gio/gio.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gio/giotypes.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define G_TYPE_RESOLVER (g_resolver_get_type ())
|
|
|
|
#define G_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_RESOLVER, GResolver))
|
|
|
|
#define G_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_RESOLVER, GResolverClass))
|
|
|
|
#define G_IS_RESOLVER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_RESOLVER))
|
|
|
|
#define G_IS_RESOLVER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_RESOLVER))
|
|
|
|
#define G_RESOLVER_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_RESOLVER, GResolverClass))
|
|
|
|
|
2009-08-19 18:07:53 +02:00
|
|
|
typedef struct _GResolverPrivate GResolverPrivate;
|
|
|
|
typedef struct _GResolverClass GResolverClass;
|
|
|
|
|
2008-12-29 18:53:47 +01:00
|
|
|
struct _GResolver {
|
|
|
|
GObject parent_instance;
|
|
|
|
|
2009-08-19 18:07:53 +02:00
|
|
|
GResolverPrivate *priv;
|
2008-12-29 18:53:47 +01:00
|
|
|
};
|
|
|
|
|
2009-05-19 07:10:57 +02:00
|
|
|
struct _GResolverClass {
|
2008-12-29 18:53:47 +01:00
|
|
|
GObjectClass parent_class;
|
|
|
|
|
2009-08-19 18:07:53 +02:00
|
|
|
/* Signals */
|
|
|
|
void ( *reload) (GResolver *resolver);
|
|
|
|
|
|
|
|
/* Virtual methods */
|
2008-12-29 18:53:47 +01:00
|
|
|
GList * ( *lookup_by_name) (GResolver *resolver,
|
|
|
|
const gchar *hostname,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
void ( *lookup_by_name_async) (GResolver *resolver,
|
|
|
|
const gchar *hostname,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
GList * ( *lookup_by_name_finish) (GResolver *resolver,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
gchar * ( *lookup_by_address) (GResolver *resolver,
|
|
|
|
GInetAddress *address,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
void ( *lookup_by_address_async) (GResolver *resolver,
|
|
|
|
GInetAddress *address,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
gchar * ( *lookup_by_address_finish) (GResolver *resolver,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
GList * ( *lookup_service) (GResolver *resolver,
|
|
|
|
const gchar *rrname,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
void ( *lookup_service_async) (GResolver *resolver,
|
|
|
|
const gchar *rrname,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
GList * ( *lookup_service_finish) (GResolver *resolver,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
Add support for MX, TXT, NS and SOA records to GResolver
* Add resolver functions for looking up DNS records of
various types. Currently implemented: MX, TXT, SOA, SRV, NS
* Return records as GVariant tuples.
* Make the GSrvTarget lookups a wrapper over this new
functionality.
* Rework the resolver test so that it has support for
looking up MX, NS, SOA, TXT records, and uses GOptionContext
https://bugzilla.gnome.org/show_bug.cgi?id=672944
2012-04-04 17:13:10 +02:00
|
|
|
GList * ( *lookup_records) (GResolver *resolver,
|
|
|
|
const gchar *rrname,
|
|
|
|
GResolverRecordType record_type,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
void ( *lookup_records_async) (GResolver *resolver,
|
|
|
|
const gchar *rrname,
|
|
|
|
GResolverRecordType record_type,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
GList * ( *lookup_records_finish) (GResolver *resolver,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2008-12-29 18:53:47 +01:00
|
|
|
/* Padding for future expansion */
|
|
|
|
void (*_g_reserved4) (void);
|
|
|
|
void (*_g_reserved5) (void);
|
|
|
|
void (*_g_reserved6) (void);
|
|
|
|
|
2009-05-19 07:10:57 +02:00
|
|
|
};
|
2008-12-29 18:53:47 +01:00
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
GType g_resolver_get_type (void) G_GNUC_CONST;
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
GResolver *g_resolver_get_default (void);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
void g_resolver_set_default (GResolver *resolver);
|
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
GList *g_resolver_lookup_by_name (GResolver *resolver,
|
|
|
|
const gchar *hostname,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
void g_resolver_lookup_by_name_async (GResolver *resolver,
|
|
|
|
const gchar *hostname,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
GList *g_resolver_lookup_by_name_finish (GResolver *resolver,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
void g_resolver_free_addresses (GList *addresses);
|
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
gchar *g_resolver_lookup_by_address (GResolver *resolver,
|
|
|
|
GInetAddress *address,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
void g_resolver_lookup_by_address_async (GResolver *resolver,
|
|
|
|
GInetAddress *address,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
gchar *g_resolver_lookup_by_address_finish (GResolver *resolver,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
GList *g_resolver_lookup_service (GResolver *resolver,
|
|
|
|
const gchar *service,
|
|
|
|
const gchar *protocol,
|
|
|
|
const gchar *domain,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
void g_resolver_lookup_service_async (GResolver *resolver,
|
|
|
|
const gchar *service,
|
|
|
|
const gchar *protocol,
|
|
|
|
const gchar *domain,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
GList *g_resolver_lookup_service_finish (GResolver *resolver,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2012-05-25 15:22:06 +02:00
|
|
|
GLIB_AVAILABLE_IN_2_34
|
Add support for MX, TXT, NS and SOA records to GResolver
* Add resolver functions for looking up DNS records of
various types. Currently implemented: MX, TXT, SOA, SRV, NS
* Return records as GVariant tuples.
* Make the GSrvTarget lookups a wrapper over this new
functionality.
* Rework the resolver test so that it has support for
looking up MX, NS, SOA, TXT records, and uses GOptionContext
https://bugzilla.gnome.org/show_bug.cgi?id=672944
2012-04-04 17:13:10 +02:00
|
|
|
GList *g_resolver_lookup_records (GResolver *resolver,
|
|
|
|
const gchar *rrname,
|
|
|
|
GResolverRecordType record_type,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2012-05-25 15:22:06 +02:00
|
|
|
GLIB_AVAILABLE_IN_2_34
|
Add support for MX, TXT, NS and SOA records to GResolver
* Add resolver functions for looking up DNS records of
various types. Currently implemented: MX, TXT, SOA, SRV, NS
* Return records as GVariant tuples.
* Make the GSrvTarget lookups a wrapper over this new
functionality.
* Rework the resolver test so that it has support for
looking up MX, NS, SOA, TXT records, and uses GOptionContext
https://bugzilla.gnome.org/show_bug.cgi?id=672944
2012-04-04 17:13:10 +02:00
|
|
|
void g_resolver_lookup_records_async (GResolver *resolver,
|
|
|
|
const gchar *rrname,
|
|
|
|
GResolverRecordType record_type,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-05-25 15:22:06 +02:00
|
|
|
GLIB_AVAILABLE_IN_2_34
|
Add support for MX, TXT, NS and SOA records to GResolver
* Add resolver functions for looking up DNS records of
various types. Currently implemented: MX, TXT, SOA, SRV, NS
* Return records as GVariant tuples.
* Make the GSrvTarget lookups a wrapper over this new
functionality.
* Rework the resolver test so that it has support for
looking up MX, NS, SOA, TXT records, and uses GOptionContext
https://bugzilla.gnome.org/show_bug.cgi?id=672944
2012-04-04 17:13:10 +02:00
|
|
|
GList *g_resolver_lookup_records_finish (GResolver *resolver,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
void g_resolver_free_targets (GList *targets);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* G_RESOLVER_ERROR:
|
|
|
|
*
|
|
|
|
* Error domain for #GResolver. Errors in this domain will be from the
|
|
|
|
* #GResolverError enumeration. See #GError for more information on
|
|
|
|
* error domains.
|
2009-05-28 00:20:08 +02:00
|
|
|
*/
|
2008-12-29 18:53:47 +01:00
|
|
|
#define G_RESOLVER_ERROR (g_resolver_error_quark ())
|
2012-12-06 20:04:59 +01:00
|
|
|
GLIB_AVAILABLE_IN_ALL
|
2008-12-29 18:53:47 +01:00
|
|
|
GQuark g_resolver_error_quark (void);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __G_RESOLVER_H__ */
|