OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ProxyServer
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/network/
ProxyServer.h
38
class
ProxyServer
{
47
ProxyServer
()
53
ProxyServer
(Type type, const String& hostName, int port)
71
Vector<
ProxyServer
> proxyServersForURL(const KURL&, const NetworkingContext*);
75
String toString(const Vector<
ProxyServer
>&);
/external/chromium/net/proxy/
proxy_server.cc
18
// Parses the proxy type from a PAC string, to a
ProxyServer
::Scheme.
21
ProxyServer
::Scheme GetSchemeFromPacTypeInternal(
25
return
ProxyServer
::SCHEME_HTTP;
30
return
ProxyServer
::SCHEME_SOCKS4;
33
return
ProxyServer
::SCHEME_SOCKS4;
35
return
ProxyServer
::SCHEME_SOCKS5;
37
return
ProxyServer
::SCHEME_DIRECT;
39
return
ProxyServer
::SCHEME_HTTPS;
41
return
ProxyServer
::SCHEME_INVALID;
45
//
ProxyServer
::Scheme. This corresponds with the values used i
[
all
...]
proxy_server.h
20
//
ProxyServer
encodes the {type, host, port} of a proxy server.
21
//
ProxyServer
is immutable.
22
class
ProxyServer
{
38
// Constructs an invalid
ProxyServer
.
39
ProxyServer
() : scheme_(SCHEME_INVALID) {}
41
ProxyServer
(Scheme scheme, const HostPortPair& host_port_pair);
48
// Returns true if this
ProxyServer
is actually just a DIRECT connection.
51
// Returns true if this
ProxyServer
is an HTTP proxy.
54
// Returns true if this
ProxyServer
is an HTTPS proxy.
57
// Returns true if this
ProxyServer
is a SOCKS proxy
[
all
...]
Completed in 413 milliseconds