Home | History | Annotate | Download | only in Plugins

Lines Matching full:proxy

947     // proxiesForURL is a CFArray of CFDictionaries. Each dictionary represents a proxy.
949 // "PROXY host[:port]" (for HTTP proxy) or
950 // "SOCKS host[:port]" (for SOCKS proxy) or
954 CFDictionaryRef proxy = static_cast<CFDictionaryRef>(CFArrayGetValueAtIndex(proxiesForURL.get(), i));
955 if (!proxy)
958 CFStringRef type = static_cast<CFStringRef>(CFDictionaryGetValue(proxy, kCFProxyTypeKey));
966 CFStringRef host = static_cast<CFStringRef>(CFDictionaryGetValue(proxy, kCFProxyHostNameKey));
967 CFNumberRef port = static_cast<CFNumberRef>(CFDictionaryGetValue(proxy, kCFProxyPortNumberKey));
974 proxies += "PROXY ";