]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/unbound/contrib/libunbound.so.conf
Fix multiple vulnerabilities in unbound.
[FreeBSD/FreeBSD.git] / contrib / unbound / contrib / libunbound.so.conf
1 # See ltrace.conf(5) for description of syntax of this file.
2 typedef ub_type = enum(TYPE_A=1,TYPE_NS=2,TYPE_SOA=6,TYPE_MX=15,TYPE_TXT=16,TYPE_AAAA=28,TYPE_DS=43,TYPE_DNSKEY=48,TYPE_TLSA=52,TYPE_ANY=255);
3 typedef ub_class = enum(CLASS_IN=1,CLASS_CH=3,CLASS_NONE=254,CLASS_ANY=255);
4 typedef ub_rcode = enum(RCODE_NOERROR,RCODE_FORMERR,RCODE_SERVFAIL,RCODE_NXDOMAIN,RCODE_NOTIMPL,RCODE_REFUSED,RCODE_YXDOMAIN,RCODE_YXRRSET,RCODE_NXRRSET,RCODE_NOTAUTH,RCODE_NOTZONE);
5 typedef ub_havedata = enum(no_data, have_data);
6 typedef ub_nxdomain = enum(name_exists, nxdomain);
7 typedef ub_secure = enum(not_secure, secure);
8 typedef ub_bogus = enum(not_bogus, bogus);
9 typedef ub_result = struct(string, ub_type, ub_class, array(void*,zero)*, array(int,zero)*, string, ub_rcode, void*, int, ub_havedata, ub_nxdomain, ub_secure, ub_bogus, string, int);
10 typedef ub_ctx = void;
11 ub_ctx* ub_ctx_create(void);
12 void ub_ctx_delete(ub_ctx*);
13 int ub_ctx_set_option(ub_ctx*, string, string);
14 int ub_ctx_get_option(ub_ctx*, string, +string*);
15 int ub_ctx_config(ub_ctx*, string);
16 int ub_ctx_set_fwd(ub_ctx*, string);
17 int ub_ctx_set_tls(ub_ctx*, bool(int));
18 int ub_ctx_set_stub(ub_ctx*, string, string, bool(int));
19 int ub_ctx_resolvconf(ub_ctx*, string);
20 int ub_ctx_hosts(ub_ctx*, string);
21 int ub_ctx_add_ta(ub_ctx*, string);
22 int ub_ctx_add_ta_file(ub_ctx*, string);
23 int ub_ctx_add_ta_autr(ub_ctx*, string);
24 int ub_ctx_trustedkeys(ub_ctx*, string);
25 int ub_ctx_debugout(ub_ctx*, void*);
26 int ub_ctx_debuglevel(ub_ctx*, int);
27 int ub_ctx_async(ub_ctx*, bool(int));
28 int ub_poll(ub_ctx*);
29 int ub_wait(ub_ctx*);
30 int ub_fd(ub_ctx*);
31 int ub_process(ub_ctx*);
32 int ub_resolve(ub_ctx*, string, ub_type, ub_class, +ub_result**);
33 int ub_resolve_async(ub_ctx*, string, ub_type, ub_class, void*, void*, +int*);
34 int ub_cancel(ub_ctx*, int);
35 void ub_resolve_free(ub_result*);
36 string ub_strerror(int);
37 int ub_ctx_print_local_zones(ub_ctx*);
38 int ub_ctx_zone_add(ub_ctx*, string, string);
39 int ub_ctx_zone_remove(ub_ctx*, string);
40 int ub_ctx_data_add(ub_ctx*, string);
41 int ub_ctx_data_remove(ub_ctx*, string);
42 string ub_version(void);