HomeSort by relevance Sort by last modified time
    Searched defs:ProxyType (Results 1 - 3 of 3) sorted by null

  /external/chromium/third_party/libjingle/source/talk/base/
proxyinfo.h 37 enum ProxyType {
43 const char * ProxyToString(ProxyType proxy);
46 ProxyType type;
  /external/webkit/Source/WebCore/platform/network/curl/
ResourceHandleManager.h 49 enum ProxyType {
68 ProxyType type = HTTP,
93 ProxyType m_proxyType;
  /external/smack/src/org/jivesoftware/smack/proxy/
ProxyInfo.java 31 public static enum ProxyType
43 private ProxyType proxyType;
45 public ProxyInfo( ProxyType pType, String pHost, int pPort, String pUser,
48 this.proxyType = pType;
58 return new ProxyInfo(ProxyType.HTTP, pHost, pPort, pUser, pPass);
64 return new ProxyInfo(ProxyType.SOCKS4, pHost, pPort, pUser, pPass);
70 return new ProxyInfo(ProxyType.SOCKS5, pHost, pPort, pUser, pPass);
75 return new ProxyInfo(ProxyType.NONE, null, 0, null, null);
80 return new ProxyInfo(ProxyType.NONE, null, 0, null, null)
    [all...]

Completed in 933 milliseconds