Perform Secure-by-default or Woefully Insecure ‘DNS’ Queries
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
705 B

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/set-res-types.R
\name{gdns_set_resolution_type}
\alias{gdns_set_resolution_type}
\title{Specify whether DNS queries are performed with recursive lookups or as a stub resolver}
\usage{
gdns_set_resolution_type(gctx, res_type = c("stub", "recursive"))
}
\arguments{
\item{gctx}{gdns resolver context created with \code{\link[=gdns_resolver]{gdns_resolver()}}}
\item{res_type}{length 1 character vector of either "\code{stub}" or "\code{recursive}"}
}
\description{
Specify whether DNS queries are performed with recursive lookups or as a stub resolver
}
\examples{
x <- gdns_context()
x <- gdns_set_resolution_type(x, "stub")
}