#include "net/dns/public/util.h"
#include <stdint.h>
#include <string_view>
#include "base/check.h"
#include "base/notreached.h"
#include "base/strings/strcat.h"
#include "base/strings/string_number_conversions.h"
#include "build/build_config.h"
#include "net/base/ip_address.h"
#include "net/dns/public/dns_protocol.h"
#include "url/scheme_host_port.h"
#include "url/url_constants.h"
namespace net {
namespace {
IPEndPoint GetMdnsIPEndPoint(const char* address) { … }
}
namespace dns_util {
IPEndPoint GetMdnsGroupEndPoint(AddressFamily address_family) { … }
IPEndPoint GetMdnsReceiveEndPoint(AddressFamily address_family) { … }
std::string GetNameForHttpsQuery(const url::SchemeHostPort& scheme_host_port,
uint16_t* out_port) { … }
}
}