Nothing
#' Internet Explorer proxy settings
#'
#' Lookup and mimic the system proxy settings on Windows as set by Internet
#' Explorer. This can be used to configure curl to use the same proxy server.
#'
#' The [ie_proxy_info] function looks up your current proxy settings as configured
#' in IE under "Internet Options" under "LAN Settings". The [ie_get_proxy_for_url]
#' determines if and which proxy should be used to connect to a particular
#' URL. If your settings have an "automatic configuration script" this
#' involves downloading and executing a PAC file, which can take a while.
#'
#' @useDynLib curl R_proxy_info
#' @export
#' @rdname ie_proxy
#' @name ie_proxy
ie_proxy_info <- function(){
.Call(R_proxy_info)
}
#' @useDynLib curl R_get_proxy_for_url
#' @param target_url url with host for which to lookup the proxy server
#' @export
#' @rdname ie_proxy
ie_get_proxy_for_url <- function(target_url = "http://www.google.com"){
stopifnot(is.character(target_url))
info <- ie_proxy_info()
if(length(info$Proxy)){
if(isTRUE(grepl("<local>", info$ProxyBypass, fixed = TRUE)) &&
isTRUE(grepl("(://)[^./]+/", paste0(target_url, "/")))){
return(NULL)
} else {
return(info$Proxy)
}
}
if(isTRUE(info$AutoDetect) || length(info$AutoConfigUrl)){
out <- .Call(R_get_proxy_for_url, target_url, info$AutoDetect, info$AutoConfigUrl)
if(isTRUE(out$HasProxy)){
return(out$Proxy)
}
}
return(NULL);
}
#' @useDynLib curl R_windows_build
get_windows_build <- function(){
.Call(R_windows_build)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.