在OSX上使用WPAD检索PAC脚本

时间:2010-12-07 16:42:29

标签: cocoa macos network-programming

如何在OSX上使用WPAD检索PAC脚本?是否足以获取“http://wpad/wpad.dat”的内容,希望DNS为此约定预先配置了“wpad”?

有更“正式”的方法吗?

2 个答案:

答案 0 :(得分:6)

以下是如何获取给定URL的PAC代理:

#import <Foundation/Foundation.h>
#import <CoreServices/CoreServices.h>
#import <SystemConfiguration/SystemConfiguration.h>

CFArrayRef CopyPACProxiesForURL(CFURLRef targetURL, CFErrorRef *error)
{
    CFDictionaryRef proxies = SCDynamicStoreCopyProxies(NULL);
    if (!proxies)
        return NULL;

    CFNumberRef pacEnabled;
    if ((pacEnabled = (CFNumberRef)CFDictionaryGetValue(proxies, kSCPropNetProxiesProxyAutoConfigEnable)))
    {
        int enabled;
        if (CFNumberGetValue(pacEnabled, kCFNumberIntType, &enabled) && enabled)
        {
            CFStringRef pacLocation = (CFStringRef)CFDictionaryGetValue(proxies, kSCPropNetProxiesProxyAutoConfigURLString);
            CFURLRef pacUrl = CFURLCreateWithString(kCFAllocatorDefault, pacLocation, NULL);
            CFDataRef pacData;
            SInt32 errorCode;
            if (!CFURLCreateDataAndPropertiesFromResource(kCFAllocatorDefault, pacUrl, &pacData, NULL, NULL, &errorCode))
                return NULL;

            CFStringRef pacScript = CFStringCreateFromExternalRepresentation(kCFAllocatorDefault, pacData, kCFStringEncodingISOLatin1);
            if (!pacScript)
                return NULL;

            CFArrayRef pacProxies = CFNetworkCopyProxiesForAutoConfigurationScript(pacScript, targetURL, error);
            return pacProxies;
        }
    }

    return NULL;
}

int main(int argc, const char *argv[])
{
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

    CFURLRef targetURL = (CFURLRef)[NSURL URLWithString : @"http://stackoverflow.com/questions/4379156/retrieve-pac-script-using-wpad-on-osx/"];
    CFErrorRef error = NULL;
    CFArrayRef proxies = CopyPACProxiesForURL(targetURL, &error);
    if (proxies)
    {
        for (CFIndex i = 0; i < CFArrayGetCount(proxies); i++)
        {
            CFDictionaryRef proxy = CFArrayGetValueAtIndex(proxies, i);
            NSLog(@"%d\n%@", i, [(id)proxy description]);
        }
        CFRelease(proxies);
    }

    [pool drain];
}

为简单起见,此代码充满了泄漏(您应该通过复制创建函数释放所有内容)并且不会处理任何潜在错误。

答案 1 :(得分:0)

请参阅WPAD draft有关合规性的第8部分。如您所建议的那样仅使用DNS会使您“符合最低要求”。

要完全兼容,您应该在使用DNS之前检查主机是否已从DHCP接收WPAD配置。您应该能够使用系统配置框架来查看主机是否从DHCP服务器接收到选项252参数。

编辑:实际上,您可以直接从system configuration framework获取WPAD网址。您似乎对kSCPropNetProxiesProxyAutoConfigEnable感兴趣,如果设置为1,则WPAD网址应位于kSCPropNetProxiesProxyAutoConfigURLString