/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
util/network/hostip.h
16 строк
429 B
qkrorlqr
Initial NBS OpenSource export
28 апр 2023, 21:54
28 апр 2023, 21:54
783a858
Код
Авторство
О чём код?
#pragma once #include <util/system/defaults.h> namespace NResolver { // resolve hostname and fills up to *slots slots in ip array; // actual number of slots filled is returned in *slots; int GetHostIP(const char* hostname, ui32* ip, size_t* slots); int GetDnsError(); inline int GetHostIP(const char* hostname, ui32* ip) { size_t slots = 1; return GetHostIP(hostname, ip, &slots); } }