Perform Secure-by-default or Woefully Insecure ‘DNS’ Queries
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

32 строки
869 B

5 лет назад
% Generated by roxygen2: do not edit by hand
5 лет назад
% Please edit documentation in R/resolver.R
5 лет назад
\name{gdns_context}
\alias{gdns_context}
5 лет назад
\title{Create a gdns DNS over TLS context and populate it with a resolver
for use in resolution functions}
\usage{
5 лет назад
gdns_context(resolvers = "9.9.9.9")
5 лет назад
}
\arguments{
5 лет назад
\item{resolvers}{character vector of valid DNS over TLS resolvers;
Defaults to Quad9 (\verb{9.9.9.9}).}
5 лет назад
}
\description{
Create a gdns DNS over TLS context and populate it with a resolver
for use in resolution functions
}
\note{
\href{https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Test+Servers#DNSPrivacyTestServers-DoTservers}{DNS Privacy}
maintains a list of DNS over TLS servers.
}
5 лет назад
\examples{
5 лет назад
x <- gdns_context()
x <- gdns_context("1.1.1.1")
5 лет назад
}
5 лет назад
\seealso{
Other query functions:
\code{\link{gdns_get_address}()},
\code{\link{gdns_query}()}
5 лет назад
}
\concept{query functions}