2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Do not allow empty DoH endpoints to be added

It was possible to specify empty DoH endpoint in BIND's configuration
file: that was an error, we should not allow doing so.
This commit is contained in:
Artem Boldariev
2021-05-12 11:53:35 +03:00
parent 9155a87528
commit d80d1b0dd9

View File

@@ -2205,6 +2205,7 @@ isc_nm_http_endpoint(isc_nmsocket_t *sock, const char *uri, isc_nm_recv_cb_t cb,
REQUIRE(VALID_NMSOCK(sock));
REQUIRE(sock->type == isc_nm_httplistener);
REQUIRE(uri != NULL && *uri != '\0');
httpcbarg = isc_mem_get(sock->mgr->mctx, sizeof(isc_nm_httpcbarg_t));
*httpcbarg = (isc_nm_httpcbarg_t){ .cb = cb, .cbarg = cbarg };