diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2010-10-04 18:08:49 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-10-04 18:08:49 +0200 |
commit | 3ede326ea0d22c4e264f8ab154acfd84eea69147 (patch) | |
tree | ef0aeaa0492932c47578bcd9a614abf96aea8dee /gweb/gresolv.h | |
parent | 32578a6c5c7d59981f636a332b6dd753207db1ee (diff) | |
download | connman-3ede326ea0d22c4e264f8ab154acfd84eea69147.tar.gz connman-3ede326ea0d22c4e264f8ab154acfd84eea69147.tar.bz2 connman-3ede326ea0d22c4e264f8ab154acfd84eea69147.zip |
Move GResolv source file sinto GWeb directory
Diffstat (limited to 'gweb/gresolv.h')
-rw-r--r-- | gweb/gresolv.h | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/gweb/gresolv.h b/gweb/gresolv.h new file mode 100644 index 00000000..1bcaf44a --- /dev/null +++ b/gweb/gresolv.h @@ -0,0 +1,74 @@ +/* + * + * Resolver library with GLib integration + * + * Copyright (C) 2009-2010 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 + * published by the Free Software Foundation. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifndef __G_RESOLV_H +#define __G_RESOLV_H + +#include <stdint.h> + +#include <glib.h> + +#ifdef __cplusplus +extern "C" { +#endif + +struct _GResolv; + +typedef struct _GResolv GResolv; + +typedef enum { + G_RESOLV_RESULT_STATUS_SUCCESS, + G_RESOLV_RESULT_STATUS_ERROR, + G_RESOLV_RESULT_STATUS_NO_RESPONSE, + G_RESOLV_RESULT_STATUS_FORMAT_ERROR, + G_RESOLV_RESULT_STATUS_SERVER_FAILURE, + G_RESOLV_RESULT_STATUS_NAME_ERROR, + G_RESOLV_RESULT_STATUS_NOT_IMPLEMENTED, + G_RESOLV_RESULT_STATUS_REFUSED, +} GResolvResultStatus; + +typedef void (*GResolvResultFunc)(GResolvResultStatus status, + char **results, gpointer user_data); + +typedef void (*GResolvDebugFunc)(const char *str, gpointer user_data); + +GResolv *g_resolv_new(int index); + +GResolv *g_resolv_ref(GResolv *resolv); +void g_resolv_unref(GResolv *resolv); + +void g_resolv_set_debug(GResolv *resolv, + GResolvDebugFunc func, gpointer user_data); + +gboolean g_resolv_add_nameserver(GResolv *resolv, const char *address, + uint16_t port, unsigned long flags); +void g_resolv_flush_nameservers(GResolv *resolv); + +guint g_resolv_lookup_hostname(GResolv *resolv, const char *hostname, + GResolvResultFunc func, gpointer user_data); + +gboolean g_resolv_cancel_lookup(GResolv *resolv, guint id); + +#ifdef __cplusplus +} +#endif + +#endif /* __G_RESOLV_H */ |