2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

Replace multiple /dns-query constants with a global one

This commit replaces the constants defining /dns-query, the default
DoH endpoint, with a global definition.
This commit is contained in:
Artem Boldariev
2021-08-12 14:56:34 +03:00
parent 33fa1d5fb4
commit db1ba15ff2
7 changed files with 68 additions and 60 deletions

View File

@@ -33,8 +33,6 @@
#include <isc/string.h>
#include <isc/util.h>
#define DEFAULT_DOH_PATH "/dns-query"
typedef enum {
UDP,
TCP,
@@ -421,7 +419,8 @@ run(void) {
protocol == HTTP_POST);
char req_url[256];
isc_nm_http_makeuri(is_https, &sockaddr_remote, NULL, 0,
DEFAULT_DOH_PATH, req_url, sizeof(req_url));
ISC_NM_HTTP_DEFAULT_PATH, req_url,
sizeof(req_url));
if (is_https) {
isc_tlsctx_createclient(&tls_ctx);
}