HomeSort by: relevance | last modified time | path
    Searched refs:dns (Results 1 - 25 of 772) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/libbind/dist/irs/
dns.c 1 /* $NetBSD: dns.c,v 1.1.1.2 2012/09/09 16:07:57 christos Exp $ */
21 static const char rcsid[] = "Id: dns.c,v 1.5 2006/03/09 23:57:56 marka Exp ";
26 * dns.c --- this is the top-level accessor function for the dns
63 struct dns_p *dns; local
72 if (!(dns = memget(sizeof *dns))) {
77 memset(dns, 0x5e, sizeof *dns);
78 dns->res = NULL
113 struct dns_p *dns = (struct dns_p *)this->private; local
134 struct dns_p *dns = (struct dns_p *)this->private; local
146 struct dns_p *dns; local
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/dyndb/driver/
util.h 40 #include <dns/types.h>
syncptr.h 40 #include <dns/diff.h>
41 #include <dns/name.h>
42 #include <dns/rdataset.h>
db.h 41 #include <dns/db.h>
42 #include <dns/name.h>
43 #include <dns/rdataclass.h>
44 #include <dns/rdatatype.h>
  /src/external/apache2/mDNSResponder/usr.bin/
Makefile 3 SUBDIR= dns-sd
  /src/external/mpl/bind/dist/bin/tests/system/cipher_suites/
tests_cipher_suites.py 14 import dns.rcode namespace
42 ("example.", 2, dns.rcode.NOERROR),
43 ("example.", 3, dns.rcode.NOERROR),
44 ("example.", 4, dns.rcode.NOERROR),
45 ("example-aes-128.", 2, dns.rcode.NOERROR),
46 ("example-aes-256.", 3, dns.rcode.NOERROR),
50 dns.rcode.NOERROR,
53 ("example-aes-256", 2, dns.rcode.SERVFAIL),
57 dns.rcode.SERVFAIL,
60 ("example-aes-128", 3, dns.rcode.SERVFAIL)
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/tkey/
tests_cve_2026_3119.py 18 import dns.message namespace
19 import dns.rdataclass namespace
20 import dns.rdatatype namespace
21 import dns.rdtypes.ANY.TKEY namespace
22 import dns.rrset namespace
23 import dns.tsigkeyring namespace
32 msg = dns.message.make_query(qname, "TKEY")
34 rdata = dns.rdtypes.ANY.TKEY.TKEY(
35 rdclass=dns.rdataclass.ANY,
36 rdtype=dns.rdatatype.TKEY
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
qpcache_p.h 22 #include <dns/nsec3.h>
23 #include <dns/qp.h>
24 #include <dns/rbt.h>
25 #include <dns/types.h>
33 * DNS QPDB Implementation (minimally adapted from RBTDB)
qpzone_p.h 22 #include <dns/nsec3.h>
23 #include <dns/qp.h>
24 #include <dns/types.h>
32 * DNS QP-Trie DB Implementation
  /src/external/mpl/bind/dist/bin/named/include/named/
builtin.h 25 #include <dns/clientinfo.h>
26 #include <dns/types.h>
  /src/external/mpl/dhcp/bind/dist/lib/dns/
version.c 18 #include <dns/version.h>
  /src/external/mpl/bind/dist/bin/tests/system/tcp/
tests_tcp.py 18 import dns.flags namespace
19 import dns.message namespace
20 import dns.name namespace
21 import dns.query namespace
22 import dns.rrset namespace
35 msg = dns.message.make_query(qname, qtype, use_edns=edns)
52 dns.query.send_tcp(sock, msg, timeout())
53 dns.query.receive_tcp(sock, timeout())
58 # Send DNS message shorter than DNS message header (12)
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/timeouts/
tests_tcp_timeouts.py 17 import dns.edns namespace
18 import dns.message namespace
19 import dns.name namespace
20 import dns.query namespace
21 import dns.rdataclass namespace
22 import dns.rdatatype namespace
37 msg = dns.message.make_query(
60 dns.query.send_tcp(sock, msg, timeout())
61 dns.query.receive_tcp(sock, timeout())
77 dns.query.send_tcp(sock, msg, timeout()
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/forward/ans6/
ans.py 16 import dns.name namespace
17 import dns.rcode namespace
18 import dns.rdatatype namespace
19 import dns.rrset namespace
46 ns1_sld_tld = dns.name.from_text("ns1.sld.tld.")
47 sld_tld = dns.name.from_text("sld.tld.")
49 if qctx.qname == ns1_sld_tld and qctx.qtype == dns.rdatatype.A:
50 response_type = dns.rdatatype.A
53 elif qctx.qname == ns1_sld_tld and qctx.qtype == dns.rdatatype.AAAA:
54 response_type = dns.rdatatype.AAA
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/rpzextra/
tests_rpzextra.py 16 import dns.rcode namespace
17 import dns.rrset namespace
37 ("baddomain.", "10.53.0.1", dns.rcode.NXDOMAIN),
38 ("gooddomain.", "10.53.0.1", dns.rcode.NOERROR),
39 ("allowed.", "10.53.0.1", dns.rcode.NOERROR),
44 ("baddomain.", "10.53.0.2", dns.rcode.NOERROR),
45 ("gooddomain.", "10.53.0.2", dns.rcode.NOERROR),
46 ("allowed.", "10.53.0.2", dns.rcode.NXDOMAIN),
51 ("baddomain.", "10.53.0.3", dns.rcode.NOERROR),
52 ("gooddomain.", "10.53.0.3", dns.rcode.NOERROR)
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/resolver/ans8/
ans.py 18 import dns.flags namespace
19 import dns.message namespace
20 import dns.rcode namespace
21 import dns.rdatatype namespace
40 Return an empty DNS message with only header flags set.
45 def flags(self) -> dns.flags.Flag:
49 def rcode(self) -> dns.rcode.Rcode:
50 return dns.rcode.NOERROR
55 message = dns.message.Message(id=qctx.query.id)
64 flags = dns.flags.Q
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
check.py 17 from dns.edns import EDECode, EDEOption
19 import dns.edns namespace
20 import dns.flags namespace
21 import dns.message namespace
22 import dns.rcode namespace
23 import dns.rrset namespace
24 import dns.zone namespace
29 def rcode(message: dns.message.Message, expected_rcode) -> None:
33 def noerror(message: dns.message.Message) -> None:
34 rcode(message, dns.rcode.NOERROR
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/dialup/
tests_dialup_zone_transfer.py 12 import dns.flags namespace
13 import dns.message namespace
14 import dns.rcode namespace
29 msg = dns.message.make_query("example.", "SOA")
31 msg.flags &= ~dns.flags.RD
38 if response.rcode() != dns.rcode.SERVFAIL:
  /src/external/mpl/bind/
binclude4netbsd 29 mkdir -p $INCLUDE/dns
31 cp $BIND/lib/dns/code.h $INCLUDE/dns
35 cp $BIND/lib/dns/include/dns/$i $INCLUDE/dns
  /src/external/mpl/bind/dist/bin/tests/system/glue/
tests_glue.py 13 import dns.edns namespace
14 import dns.flags namespace
15 import dns.message namespace
33 msg.flags &= ~dns.flags.RD
53 expected_answer = dns.message.from_text(answer)
64 msg.flags &= ~dns.flags.RD
73 expected_answer = dns.message.from_text(answer)
99 msg = dns.message.make_query(qname, "A")
100 msg.flags &= ~dns.flags.RD
107 options=[dns.edns.GenericOption(dns.edns.OptionType.COOKIE, b"0xda13cc")]
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/xfer/ans9/
ans.py 16 import dns.rcode namespace
17 import dns.rdatatype namespace
18 import dns.rrset namespace
51 soa_rrset = dns.rrset.from_text(
55 dns.rdatatype.SOA,
62 if qctx.qtype == dns.rdatatype.SOA:
66 if qctx.qtype != dns.rdatatype.AXFR:
68 # section of a subsequent DNS message below.
80 ns_rrset = dns.rrset.from_text(
81 qctx.qname, 300, qctx.qclass, dns.rdatatype.NS, ".
    [all...]
  /src/external/bsd/libevent/dist/include/
evdns.h 33 A dns subsystem for Libevent.
42 #include <event2/dns.h>
  /src/external/bsd/ntp/dist/sntp/libevent/include/
evdns.h 34 A dns subsystem for Libevent.
43 #include <event2/dns.h>
  /src/external/mpl/bind/dist/bin/tests/system/tsig/
tests_badtime.py 17 import dns.message namespace
18 import dns.query namespace
19 import dns.tsig namespace
20 import dns.tsigkeyring namespace
34 msg = dns.message.make_query(qname, qtype, use_edns=edns)
52 keyring = dns.tsigkeyring.from_text(
65 dns.query.send_tcp(sock, wire, timeout())
66 with pytest.raises(dns.tsig.PeerBadTime):
67 dns.query.receive_tcp(sock, timeout(), keyring=keyring)
  /src/external/mpl/bind/dist/bin/tests/system/ixfr_nonminimal/ans2/
ans.py 18 import dns.rcode namespace
19 import dns.rdataclass namespace
20 import dns.rdatatype namespace
21 import dns.rrset namespace
32 def rrset(owner: str, rdtype: dns.rdatatype.RdataType, rdata: str) -> dns.rrset.RRset:
33 return dns.rrset.from_text(
36 dns.rdataclass.IN,
42 def soa(serial: int, *, owner: str = "nil.") -> dns.rrset.RRset:
45 dns.rdatatype.SOA
    [all...]

Completed in 54 milliseconds

1 2 3 4 5 6 7 8 91011>>