debug my_dns

This commit is contained in:
tieshagr 2025-04-03 16:05:21 +03:00
parent fca5e5ac08
commit 8aad298aa4
1 changed files with 2 additions and 1 deletions

View File

@ -409,7 +409,7 @@ void my_fin()
// curl --http2 "https://dns.google/resolve?name=example.com&type=A"
// curl --http2 --header "accept: application/dns-json" "https://1.1.1.1/dns-query?name=cloudflare.com" --next --http2 --header "accept: application/dns-json" "https://1.1.1.1/dns-query?name=yandex.com"
void my_dns()
int my_dns()
{
// Данная процедура сопостовляет доменное имя с IP
// Обрабатываем перменнкю domain, записываем в ip
@ -484,6 +484,7 @@ void my_dns()
status = 1;
}
return status;
printf("end my_dns"); // debug
}