OSDN Git Service

2013.10.24
[uclinux-h8/uClinux-dist.git] / lib / adns / client / adnshost.h
1 /*
2  * adnshost.h
3  * - useful general-purpose resolver client program, header file
4  */
5 /*
6  *  This file is
7  *    Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
8  *
9  *  It is part of adns, which is
10  *    Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
11  *    Copyright (C) 1999-2000 Tony Finch <dot@dotat.at>
12  *  
13  *  This program is free software; you can redistribute it and/or modify
14  *  it under the terms of the GNU General Public License as published by
15  *  the Free Software Foundation; either version 2, or (at your option)
16  *  any later version.
17  *  
18  *  This program is distributed in the hope that it will be useful,
19  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  *  GNU General Public License for more details.
22  *  
23  *  You should have received a copy of the GNU General Public License
24  *  along with this program; if not, write to the Free Software Foundation,
25  *  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
26  */
27
28 #ifndef ADNSHOST_H_INCLUDED
29 #define ADNSHOST_H_INCLUDED
30
31 #include <stdlib.h>
32 #include <stdio.h>
33 #include <string.h>
34 #include <errno.h>
35 #include <signal.h>
36 #include <stdarg.h>
37 #include <stdlib.h>
38 #include <assert.h>
39 #include <time.h>
40
41 #include <sys/types.h>
42 #include <sys/socket.h>
43 #include <netinet/in.h>
44 #include <arpa/inet.h>
45
46 #include "config.h"
47 #include "adns.h"
48 #include "dlist.h"
49 #include "client.h"
50
51 #ifdef ADNS_REGRESS_TEST
52 # include "hredirect.h"
53 #endif
54
55 /* declarations related to option processing */
56
57 struct optioninfo;
58 typedef void optfunc(const struct optioninfo *oi, const char *arg, const char *arg2);
59
60 struct optioninfo {
61   enum oi_type {
62     ot_end, ot_desconly,
63     ot_flag, ot_value, ot_func, ot_funcarg, ot_funcarg2
64   } type;
65   const char *desc;
66   const char *sopt, *lopt;
67   int *storep, value;
68   optfunc *func;
69   const char *argdesc, *argdesc2;
70 };
71
72 enum ttlmode { tm_none, tm_rel, tm_abs };
73 enum outputformat { fmt_default, fmt_simple, fmt_inline, fmt_asynch };
74
75 struct perqueryflags_remember {
76   int show_owner, show_type, show_cname;
77   int ttl;
78 };
79
80 extern int ov_env, ov_pipe, ov_asynch;
81 extern int ov_verbose;
82 extern adns_rrtype ov_type;
83 extern int ov_search, ov_qc_query, ov_qc_anshost, ov_qc_cname;
84 extern int ov_tcp, ov_cname, ov_format;
85 extern char *ov_id;
86 extern struct perqueryflags_remember ov_pqfr;
87
88 extern optfunc of_config, of_version, of_help, of_type, of_ptr, of_reverse;
89 extern optfunc of_asynch_id, of_cancel_id;
90
91 const struct optioninfo *opt_findl(const char *opt);
92 const struct optioninfo *opt_finds(const char **optp);
93 void opt_do(const struct optioninfo *oip, int invert, const char *arg, const char *arg2);
94
95 /* declarations related to query processing */
96
97 struct query_node {
98   struct query_node *next, *back;
99   struct perqueryflags_remember pqfr;
100   char *id, *owner;
101   adns_query qu;
102 };
103
104 extern adns_state ads;
105 extern struct outstanding_list { struct query_node *head, *tail; } outstanding;
106
107 void ensure_adns_init(void);
108 void query_do(const char *domain);
109 void query_done(struct query_node *qun, adns_answer *answer);
110
111 /* declarations related to main program and useful utility functions */
112
113 void sysfail(const char *what, int errnoval) NONRETURNING;
114 void usageerr(const char *what, ...) NONRETURNPRINTFFORMAT(1,2);
115 void outerr(void) NONRETURNING;
116
117 void *xmalloc(size_t sz);
118 char *xstrsave(const char *str);
119
120 extern int rcode;
121 extern const char *config_text; /* 0 => use defaults */
122
123 #endif