| /freebsd/contrib/unbound/dnscrypt/ |
| H A D | dnscrypt.m4 | 1 # dnscrypt.m4 5 # Check for required dnscrypt libraries and add dnscrypt configure args. 8 AC_ARG_ENABLE([dnscrypt], 9 AS_HELP_STRING([--enable-dnscrypt], 10 [Enable dnscrypt support (requires libsodium)]), 15 [Path where libsodium is installed, for dnscrypt]), [ 26 [Define to 1 to enable dnscrypt with xchacha20 support])
|
| H A D | dnscrypt.c | 892 if( !c->dnscrypt ) { in dnsc_handle_curved_request() 917 if(!repinfo->c->dnscrypt) { in dnsc_handle_uncurved_request()
|
| /freebsd/contrib/unbound/ |
| H A D | Makefile.in | 473 dnscrypt.lo dnscrypt.o: $(srcdir)/dnscrypt/dnscrypt.c config.h \ 474 dnscrypt/dnscrypt_config.h \ 475 $(srcdir)/dnscrypt/dnscrypt.h $(srcdir)/dnscrypt/cert.h \ 536 …rm -f smallapp/unbound-control-setup.sh dnstap/dnstap_config.h dnscrypt/dnscrypt_config.h contrib/… 736 …$(srcdir)/util/rbtree.h $(srcdir)/util/rtt.h $(srcdir)/util/netevent.h $(srcdir)/dnscrypt/dnscrypt… 737 $(srcdir)/dnscrypt/cert.h \ 761 $(srcdir)/util/data/dname.h $(srcdir)/util/netevent.h $(srcdir)/dnscrypt/dnscrypt.h \ 762 $(srcdir)/dnscrypt/cert.h \ 769 $(srcdir)/dnscrypt/dnscrypt.h $(srcdir)/dnscrypt/cert.h \ 791 $(srcdir)/util/netevent.h $(srcdir)/dnscrypt/dnscrypt.h \ [all …]
|
| H A D | configure.ac | 10 sinclude(dnscrypt/dnscrypt.m4) 2026 # check for dnscrypt if requested 2028 AC_DEFINE([USE_DNSCRYPT], [1], [Define to 1 to enable dnscrypt support]) 2031 AC_SUBST([DNSCRYPT_SRC], ["dnscrypt/dnscrypt.c"]) 2032 AC_SUBST([DNSCRYPT_OBJ], ["dnscrypt.lo"]) 2478 …unbound-host.1 smallapp/unbound-control-setup.sh dnstap/dnstap_config.h dnscrypt/dnscrypt_config.h…
|
| H A D | config.h.in | 983 /* Define to 1 to enable dnscrypt support */ 986 /* Define to 1 to enable dnscrypt with xchacha20 support */
|
| H A D | configure | 1647 --enable-dnscrypt Enable dnscrypt support (requires libsodium) 27072 "dnscrypt/dnscrypt_config.h") CONFIG_FILES="$CONFIG_FILES dnscrypt/dnscrypt_config.h" ;;
|
| /freebsd/contrib/unbound/util/ |
| H A D | configlexer.lex | 547 dnscrypt{COLON} { YDVAR(0, VAR_DNSCRYPT) } 548 dnscrypt-enable{COLON} { YDVAR(1, VAR_DNSCRYPT_ENABLE) } 549 dnscrypt-port{COLON} { YDVAR(1, VAR_DNSCRYPT_PORT) } 550 dnscrypt-provider{COLON} { YDVAR(1, VAR_DNSCRYPT_PROVIDER) } 551 dnscrypt-secret-key{COLON} { YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) } 552 dnscrypt-provider-cert{COLON} { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) } 553 dnscrypt-provider-cert-rotated{COLON} { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) } 554 dnscrypt-shared-secret-cache-size{COLON} { 556 dnscrypt-shared-secret-cache-slabs{COLON} { 558 dnscrypt-nonce-cache-size{COLON} { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) } [all …]
|
| H A D | netevent.c | 2935 if (c->dnscrypt) 4630 c->dnscrypt = c->tcp_parent->dnscrypt; 4632 if(c->dnscrypt && c->dnscrypt_buffer == c->buffer) { 5782 c->dnscrypt = 0; 5842 c->dnscrypt = 0; 5915 c->dnscrypt = 0; 6016 c->dnscrypt = 0; 6117 c->dnscrypt = 0; 6238 c->dnscrypt = 0; 6333 c->dnscrypt = 0; [all …]
|
| H A D | netevent.h | 414 int dnscrypt; member
|
| H A D | config_file.h | 681 int dnscrypt; member
|
| H A D | config_file.c | 363 cfg->dnscrypt = 0; in config_create() 839 else S_YNO("dnscrypt-enable:", dnscrypt) in config_set_option() 1330 else O_YNO(opt, "dnscrypt-enable", dnscrypt) in config_get_option() 1573 if(!cfg->dnscrypt) cfg->dnscrypt_port = 0; in config_read()
|
| H A D | configparser.y | 3794 else cfg_parser->cfg->dnscrypt = (strcmp($2, "yes")==0);
|
| /freebsd/contrib/unbound/doc/ |
| H A D | unbound-control.rst | 830 @@UAHL@unbound-control.stats@threadX.num.dnscrypt.crypted@@ 832 dnscrypt. 835 @@UAHL@unbound-control.stats@threadX.num.dnscrypt.cert@@ 836 number of queries that were requesting dnscrypt certificates. 839 @@UAHL@unbound-control.stats@threadX.num.dnscrypt.cleartext@@ 840 number of queries received on dnscrypt port that were cleartext and not a 844 @@UAHL@unbound-control.stats@threadX.num.dnscrypt.malformed@@ 845 number of request that were neither cleartext, not valid dnscrypt messages. 970 @@UAHL@unbound-control.stats@total.num.dnscrypt.crypted@@ 974 @@UAHL@unbound-control.stats@total.num.dnscrypt.cert@@ [all …]
|
| H A D | example.conf.in | 1281 # To enable, use --enable-dnscrypt to configure before compiling. 1283 # 1. the keys/certs cannot be produced by Unbound. You can use dnscrypt-wrapper 1284 # for this: https://github.com/cofyc/dnscrypt-wrapper/blob/master/README.md#usage 1285 # 2. dnscrypt channel attaches to an interface. you MUST set interfaces to 1286 # listen on `dnscrypt-port` with the follo0wing snippet: 1291 # Finally, `dnscrypt` config has its own section. 1292 # dnscrypt: 1293 # dnscrypt-enable: yes 1294 # dnscrypt-port: 443 1295 # dnscrypt-provider: 2.dnscrypt-cert.example.com. [all …]
|
| H A D | unbound.conf.rst | 3998 The **dnscrypt:** clause gives the settings of the dnscrypt channel. 4000 compiled with ``--enable-dnscrypt``. 4002 You can use dnscrypt-wrapper to generate those: 4003 https://github.com/cofyc/dnscrypt-wrapper/blob/master/README.md#usage 4006 @@UAHL@unbound.conf.dnscrypt@dnscrypt-enable@@: *<yes or no>* 4007 Whether or not the dnscrypt config should be enabled. 4013 @@UAHL@unbound.conf.dnscrypt@dnscrypt-port@@: *<port number>* 4014 On which port should dnscrypt should be activated. 4021 @@UAHL@unbound.conf.dnscrypt@dnscrypt-provider@@: *<provider name>* 4027 2.dnscrypt-cert.example.com. [all …]
|
| H A D | Changelog | 415 - Fix compile of interface check code when dnscrypt or quic is 535 - Fix for dnstap with dnscrypt and dnstap without dnsoverquic. 1279 - Fix #941: dnscrypt doesn't work after upgrade to 1.18 with 1280 suggestion by dukeartem to also fix the udp_ancil with dnscrypt. 1840 - Fix dnscrypt compile for proxy protocol code changes. 1846 - Fix checkconf test for dnscrypt and proxy port. 2753 - Fix unused-function warning when compiling with --enable-dnscrypt. 3715 because dnscrypt-proxy (2.0.36) does not support the test setup 3810 - Fix Bad Indentation, in dnscrypt.c, 3814 - Fix compile error in dnscrypt. [all …]
|
| /freebsd/contrib/unbound/contrib/ |
| H A D | redirect-bogus.patch | 129 cfg->dnscrypt = 0; 178 dnscrypt{COLON} { YDVAR(0, VAR_DNSCRYPT) } 179 dnscrypt-enable{COLON} { YDVAR(1, VAR_DNSCRYPT_ENABLE) } 180 dnscrypt-port{COLON} { YDVAR(1, VAR_DNSCRYPT_PORT) }
|
| H A D | unbound-fuzzme.patch | 94 + $(srcdir)/util/netevent.h $(srcdir)/dnscrypt/dnscrypt.h $(srcdir)/services/cache/rrset.h \
|
| H A D | warmup.sh | 38 dnscrypt.org
|
| H A D | warmup.cmd | 43 dnscrypt.org
|
| H A D | fastrpz.patch | 35 @@ -428,6 +430,11 @@ dnscrypt.lo dnscrypt.o: $(srcdir)/dnscrypt/dnscrypt.c config.h \ 73 sinclude(dnscrypt/dnscrypt.m4) 130 /** the dnscrypt environment */ 154 #include "dnscrypt/dnscrypt.h"
|
| /freebsd/contrib/unbound/dnstap/ |
| H A D | dnstap.proto | 65 DNSCryptUDP = 5; // DNSCrypt over UDP (https://dnscrypt.info/protocol) 66 DNSCryptTCP = 6; // DNSCrypt over TCP (https://dnscrypt.info/protocol)
|
| /freebsd/contrib/unbound/daemon/ |
| H A D | unbound.c | 204 + (cfg->dnscrypt?cfg->dnscrypt_shared_secret_cache_size + cfg->dnscrypt_nonce_cache_size:0) in checkrlimits()
|
| H A D | daemon.c | 732 if(daemon->cfg->dnscrypt) { in daemon_fork() 739 fatal_exit("dnscrypt enabled in config but unbound was not built with " in daemon_fork() 740 "dnscrypt support"); in daemon_fork()
|
| H A D | worker.c | 1504 if(c->dnscrypt && !repinfo->is_dnscrypted) { in worker_handle_request() 1539 } else if(c->dnscrypt && repinfo->is_dnscrypted) { in worker_handle_request()
|