Current Path : /var/www/alh/system/library/httpful/ |
Current File : /var/www/alh/system/library/httpful/proxy.php |
<?php namespace Httpful; if (!defined('CURLPROXY_SOCKS4')) { define('CURLPROXY_SOCKS4', 4); } /** * Class to organize the Proxy stuff a bit more */ class Proxy { const HTTP = CURLPROXY_HTTP; const SOCKS4 = CURLPROXY_SOCKS4; const SOCKS5 = CURLPROXY_SOCKS5; }