#ifndef _DNS_COMMON_H
#define _DNS_COMMON_H
#include <stdio.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <strings.h>
#include <thread.h>
#include <arpa/inet.h>
#include <arpa/nameser.h>
#include <resolv.h>
#include <syslog.h>
#include <nsswitch.h>
#include <nss_common.h>
#include <nss_dbdefs.h>
#include <stdlib.h>
#include <signal.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct dns_backend *dns_backend_ptr_t;
typedef nss_status_t (*dns_backend_op_t)(dns_backend_ptr_t, void *);
struct dns_backend {
dns_backend_op_t *ops;
nss_dbop_t n_ops;
};
extern void (*set_no_hosts_fallback)(void);
extern void (*unset_no_hosts_fallback)(void);
extern struct __res_state *(*set_res_retry)();
extern int (*enable_mt)();
extern int (*disable_mt)();
extern int *(*get_h_errno)();
extern int (*override_retry)(int);
extern void switch_resolver_setup(int *, sigset_t *, int *);
extern void switch_resolver_reset(int, sigset_t, int);
extern mutex_t one_lane;
extern int ent2result(struct hostent *, nss_XbyY_args_t *, int);
extern int ent2str(struct hostent *, nss_XbyY_args_t *, int);
nss_backend_t *_nss_dns_constr(dns_backend_op_t *, int);
extern nss_status_t _herrno2nss(int);
nss_status_t _nss_dns_gethost_withttl(void *buf, size_t bufsize, int ipnode);
nss_status_t _nss_get_dns_hosts_name(dns_backend_ptr_t *, void **, size_t *);
nss_status_t _nss_get_dns_ipnodes_name(dns_backend_ptr_t *, void **, size_t *);
#ifdef __cplusplus
}
#endif
#endif