You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?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;
|
|
}
|