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

1 2 3

  /src/external/bsd/unbound/sbin/
Makefile 6 unbound \
7 unbound-anchor \
8 unbound-checkconf \
9 unbound-control \
10 unbound-control-setup
  /src/external/bsd/unbound/
Makefile.inc 4 UNBOUND:=${.PARSEDIR}/dist
6 .PATH: ${UNBOUND}/doc
17 -e s,@ub_conf_dir@,/etc/unbound, \
18 -e s,@ub_conf_file@,/etc/unbound/unbound.conf, \
19 -e s,@UNBOUND_CHROOT_DIR@,/var/chroot/unbound, \
20 -e s,@UNBOUND_PIDFILE@,/var/run/unbound.pid, \
21 -e s,@UNBOUND_ROOTCERT_FILE@,/etc/unbound/icannbundle.pem, \
22 -e s,@UNBOUND_ROOTKEY_FILE@,/etc/unbound/root.key, \
23 -e s,@UNBOUND_RUN_DIR@,/var/chroot/unbound/etc/unbound,
    [all...]
  /src/external/bsd/unbound/dist/libunbound/python/examples/
dns-lookup.py 36 import unbound
38 ctx = unbound.ub_ctx()
41 status, result = ctx.resolve("www.nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
45 print("Error:", unbound.ub_strerror(status))
reverse-lookup.py 36 import unbound
38 ctx = unbound.ub_ctx()
41 status, result = ctx.resolve(unbound.reverse("74.125.43.147") + ".in-addr.arpa.", unbound.RR_TYPE_PTR, unbound.RR_CLASS_IN)
ns-lookup.py 37 import unbound
39 ctx = unbound.ub_ctx()
42 status, result = ctx.resolve("vutbr.cz", unbound.RR_TYPE_NS, unbound.RR_CLASS_IN)
mx-lookup.py 37 import unbound
39 ctx = unbound.ub_ctx()
42 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
49 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
example8-1.py 37 import unbound
39 ctx = unbound.ub_ctx()
42 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
49 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
56 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_NS, unbound.RR_CLASS_IN)
async-lookup.py 36 import unbound
39 ctx = unbound.ub_ctx()
50 status, async_id = ctx.resolve_async("www.nic.cz", my_data, call_back, unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
57 print("Resolve error:", unbound.ub_strerror(status))
idn-lookup.py 37 import unbound
40 ctx = unbound.ub_ctx()
45 status, result = ctx.resolve(u"www.háčkyčárky.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
52 status, result = ctx.resolve(u"háčkyčárky.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
59 status, result = ctx.resolve(unbound.reverse('217.31.204.66')+'.in-addr.arpa', unbound.RR_TYPE_PTR, unbound.RR_CLASS_IN)
  /src/external/bsd/unbound/bin/unbound-host/
Makefile 3 PROG=unbound-host
  /src/external/bsd/unbound/dist/libunbound/python/doc/examples/
example7-1.py 6 import unbound
8 ctx = unbound.ub_ctx()
11 status, result = ctx.resolve(u"www.háčkyčárky.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
example7-2.py 6 import unbound
8 ctx = unbound.ub_ctx()
11 status, result = ctx.resolve(u"háčkyčárky.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
example8-1.py 6 import unbound
8 ctx = unbound.ub_ctx()
11 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_MX, unbound.RR_CLASS_IN)
18 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_A, unbound.RR_CLASS_IN)
25 status, result = ctx.resolve("nic.cz", unbound.RR_TYPE_NS, unbound.RR_CLASS_IN)
  /src/external/bsd/unbound/etc/
Makefile 5 FILESDIR= /usr/share/examples/unbound
7 FILES= unbound.conf
10 unbound.conf: example.conf.in __subst
11 CLEANFILES+= unbound.conf
  /src/external/bsd/unbound/sbin/unbound/
Makefile 3 PROG=unbound
  /src/external/bsd/unbound/sbin/unbound-checkconf/
Makefile 3 PROG=unbound-checkconf
  /src/external/bsd/unbound/sbin/unbound-control/
Makefile 3 PROG=unbound-control
  /src/external/bsd/unbound/sbin/unbound-control-setup/
Makefile 3 SCRIPTS=unbound-control-setup
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.fortran/
multi-dim.f90 26 subroutine sub (varbound, n, unbound)
27 integer :: n, varbound (n), unbound (*) local in subroutine:sub
28 varbound (4) = unbound (4) ! break-variable
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.fortran/
multi-dim.f90 26 subroutine sub (varbound, n, unbound)
27 integer :: n, varbound (n), unbound (*) local in subroutine:sub
28 varbound (4) = unbound (4) ! break-variable
  /src/external/bsd/unbound/etc/rc.d/
Makefile 3 SCRIPTS=unbound
  /src/external/bsd/unbound/bin/
Makefile 6 unbound-host
  /src/external/bsd/unbound/dist/libunbound/python/
Makefile 39 @echo " useful in case you don't want to install unbound but want to test examples"
52 rm -rdf examples/unbound
57 rm -rdf examples/unbound
58 cd examples && mkdir unbound && ln -s ../../unbound.py unbound/__init__.py && ln -s ../../_unbound.so unbound/_unbound.so && ln -s ../../../../.libs/libunbound.so.2 unbound/libunbound.so.2 && ls -la
61 cd examples && LD_LIBRARY_PATH=unbound bash
62 rm -rdf examples/unbound examples/_unbound.s
    [all...]
  /src/external/bsd/unbound/sbin/unbound-anchor/
Makefile 3 PROG=unbound-anchor
  /src/external/bsd/unbound/dist/contrib/
unbound.spec 2 Name: unbound
6 Url: http://www.nlnetlabs.nl/unbound/
7 Source: http://www.nlnetlabs.nl/downloads/unbound/%{name}-%{version}.tar.gz
8 #Source1: unbound.init
14 Unbound is a validating, recursive, and caching DNS resolver.
16 The C implementation of Unbound is developed and maintained by NLnet
20 Unbound is designed as a set of modular components, so that also
29 # configure with /var/unbound/unbound.conf so that all default chroot,
30 # pidfile and config file are in /var/unbound, ready for chroot jail set up
    [all...]

Completed in 38 milliseconds

1 2 3