Skip to content
Snippets Groups Projects
Verified Commit b8d98e53 authored by Tomas Krizek's avatar Tomas Krizek
Browse files

daemon: add deprecation warning for old DoH implementation

parent 5ee2b298
Branches
Tags
1 merge request!997doh2: C implementation of DoH using nghttp2
......@@ -208,6 +208,10 @@ static int net_listen(lua_State *L)
tls = http = true;
} else if (k) {
kind = k;
if (strcasecmp(k, "doh") == 0) {
kr_log_deprecate(
"kind=\"doh\" is an obsolete DoH implementation, use kind=\"doh2\" instead\n");
}
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment