# See ltrace.conf(5) for description of syntax of this file. 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); typedef ub_class = enum(CLASS_IN=1,CLASS_CH=3,CLASS_NONE=254,CLASS_ANY=255); 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); typedef ub_havedata = enum(no_data, have_data); typedef ub_nxdomain = enum(name_exists, nxdomain); typedef ub_secure = enum(not_secure, secure); typedef ub_bogus = enum(not_bogus, bogus); 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); typedef ub_ctx = void; ub_ctx* ub_ctx_create(void); void ub_ctx_delete(ub_ctx*); int ub_ctx_set_option(ub_ctx*, string, string); int ub_ctx_get_option(ub_ctx*, string, +string*); int ub_ctx_config(ub_ctx*, string); int ub_ctx_set_fwd(ub_ctx*, string); int ub_ctx_set_tls(ub_ctx*, bool(int)); int ub_ctx_set_stub(ub_ctx*, string, string, bool(int)); int ub_ctx_resolvconf(ub_ctx*, string); int ub_ctx_hosts(ub_ctx*, string); int ub_ctx_add_ta(ub_ctx*, string); int ub_ctx_add_ta_file(ub_ctx*, string); int ub_ctx_add_ta_autr(ub_ctx*, string); int ub_ctx_trustedkeys(ub_ctx*, string); int ub_ctx_debugout(ub_ctx*, void*); int ub_ctx_debuglevel(ub_ctx*, int); int ub_ctx_async(ub_ctx*, bool(int)); int ub_poll(ub_ctx*); int ub_wait(ub_ctx*); int ub_fd(ub_ctx*); int ub_process(ub_ctx*); int ub_resolve(ub_ctx*, string, ub_type, ub_class, +ub_result**); int ub_resolve_async(ub_ctx*, string, ub_type, ub_class, void*, void*, +int*); int ub_cancel(ub_ctx*, int); void ub_resolve_free(ub_result*); string ub_strerror(int); int ub_ctx_print_local_zones(ub_ctx*); int ub_ctx_zone_add(ub_ctx*, string, string); int ub_ctx_zone_remove(ub_ctx*, string); int ub_ctx_data_add(ub_ctx*, string); int ub_ctx_data_remove(ub_ctx*, string); string ub_version(void);