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