vdns: directory for all DNS related sources

Move all DNS related source files from lib to lib/vdns. Fix
include paths, no furher changes.

Closes #22482
This commit is contained in:
Stefan Eissing 2026-08-04 11:52:00 +02:00 committed by Daniel Stenberg
parent e5b5846c10
commit 69a224d6b4
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
54 changed files with 86 additions and 85 deletions

View file

@ -35,7 +35,7 @@
#include "curl_addrinfo.h"
#include "hash.h"
#include "dnscache.h"
#include "vdns/dnscache.h"
static struct Curl_dnscache hp;
static char *data_key;

View file

@ -22,7 +22,7 @@
*
***************************************************************************/
#include "unitcheck.h"
#include "doh.h"
#include "vdns/doh.h"
static CURLcode test_unit1650(const char *arg)
{

View file

@ -22,7 +22,7 @@
*
***************************************************************************/
#include "unitcheck.h"
#include "doh.h"
#include "vdns/doh.h"
static CURLcode test_unit1655(const char *arg)
{

View file

@ -25,8 +25,8 @@
/* DoH + HTTPSRR are required */
#if !defined(CURL_DISABLE_DOH) && defined(USE_HTTPSRR)
#include "doh.h"
#include "httpsrr.h"
#include "vdns/doh.h"
#include "vdns/httpsrr.h"
static CURLcode t1658_setup(void)
{