1 parent 0c3fdd0 commit 98a2cf4Copy full SHA for 98a2cf4
1 file changed
src/dns_server/request.c
@@ -936,6 +936,15 @@ int _dns_server_process_https_svcb(struct dns_request *request)
936
937
if (!list_empty(&request->https_svcb_list)) {
938
request->rcode = DNS_RC_NOERROR;
939
+
940
+ struct dns_server_post_context context;
941
+ _dns_server_post_context_init(&context, request);
942
+ context.do_reply = 1;
943
+ context.do_audit = 1;
944
+ context.do_ipset = 1;
945
+ context.do_cache = 1;
946
+ _dns_request_post(&context);
947
948
return -1;
949
}
950
0 commit comments