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.
information-system/dingdingcallback/vendor/nategood/httpful/src/Httpful/Proxy.php

17 lines
279 B
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;
}