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.
 
 

13 lines
324 B

#' Printer for gdns contexts
#'
#' @param x gdns context object
#' @param ... unused
#' @keywords internal
#' @export
print.gctx <- function(x, ...) {
if (is_null_xptr_(x)) {
cat("<gdns resolver context (INVALID)>\n")
} else {
cat("<gdns resolver context; resolvers: ", int_get_resolvers(x) ,">\n", sep="")
}
}