function _drupal_http_use_proxy

Helper function for determining hosts excluded from needing a proxy.

Return value

TRUE if a proxy should be used for this host.

Related topics

File

drupal/core/includes/common.inc, line 748
Common functions that many Drupal modules will need to reference.

Code

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