function _drupal_http_use_proxy

7.x common.inc _drupal_http_use_proxy($host)

Helper function for determining hosts excluded from needing a proxy.

Return value

TRUE if a proxy should be used for this host.

Related topics

1 call to _drupal_http_use_proxy()
drupal_http_request in drupal-7.x/includes/common.inc
Performs an HTTP request.

File

drupal-7.x/includes/common.inc, line 1098
Common functions that many Drupal modules will need to reference.

Code

function _drupal_http_use_proxy($host) {
  $proxy_exceptions = variable_get('proxy_exceptions', array('localhost', '127.0.0.1'));
  return !in_array(strtolower($host), $proxy_exceptions, TRUE);
}