Searched refs:proxyInfo (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/webdavfs-367/webdavlib/
H A Dwebdavlib.h39 // enum WEBDAVLIBAuthStatus queryForProxy(CFURLRef a_url, CFDictionaryRef proxyInfo, int *error)
56 // The following keys are returned in the 'proxyInfo' dictionary:
75 extern enum WEBDAVLIBAuthStatus queryForProxy(CFURLRef a_url, CFMutableDictionaryRef proxyInfo, int *error);
H A Dwebdavlib.c410 queryForProxy(CFURLRef a_url, CFMutableDictionaryRef proxyInfo, int *error) argument
429 // Return http proxy server info in proxyInfo dictionary
430 CFDictionarySetValue(proxyInfo, kWebDAVLibProxySchemeKey, CFSTR("http"));
431 CFDictionarySetValue(proxyInfo, kWebDAVLibProxyServerNameKey, ctx.httpProxyServer);
434 CFDictionarySetValue(proxyInfo, kWebDAVLibProxyRealmKey, ctx.proxyRealm);
439 CFDictionarySetValue(proxyInfo, kWebDAVLibProxyPortKey, cf_port);
444 // Return https proxy server info in proxyInfo dictionary
445 CFDictionarySetValue(proxyInfo, kWebDAVLibProxySchemeKey, CFSTR("https"));
446 CFDictionarySetValue(proxyInfo, kWebDAVLibProxyServerNameKey, ctx.httpsProxyServer);
449 CFDictionarySetValue(proxyInfo, kWebDAVLibProxyRealmKe
[all...]
/macosx-10.10.1/webdavfs-367/WebDAVPlugin/
H A DWebDAV_Mount.c868 CFMutableDictionaryRef proxyInfo; local
904 proxyInfo = CFDictionaryCreateMutable(NULL, 0,
907 if (proxyInfo == NULL) {
916 authStat = queryForProxy(a_url, proxyInfo, &error);
923 cf_str = (CFStringRef) CFDictionaryGetValue(proxyInfo, kWebDAVLibProxyServerNameKey);
933 cf_str = (CFStringRef) CFDictionaryGetValue(proxyInfo, kWebDAVLibProxyRealmKey);
943 CFReleaseNull(proxyInfo);

Completed in 108 milliseconds