SCSchemaDefinitions.c
1 #include <SystemConfiguration/SCSchemaDefinitions.h> 2 #include <CoreFoundation/CFString.h> 3 4 #ifndef CONST_STRING_DECL 5 # define CONST_STRING_DECL(name, value) const CFStringRef name = CFSTR(value) 6 #endif 7 8 CONST_STRING_DECL(kSCPropNetProxiesExceptionsList, "ExceptionsList"); 9 CONST_STRING_DECL(kSCPropNetProxiesExcludeSimpleHostnames, "ExcludeSimpleHostnames"); 10 CONST_STRING_DECL(kSCPropNetProxiesFTPEnable, "FTPEnable"); 11 CONST_STRING_DECL(kSCPropNetProxiesFTPPassive, "FTPPassive"); 12 CONST_STRING_DECL(kSCPropNetProxiesFTPPort, "FTPPort"); 13 CONST_STRING_DECL(kSCPropNetProxiesFTPProxy, "FTPProxy"); 14 CONST_STRING_DECL(kSCPropNetProxiesGopherEnable, "GopherEnable"); 15 CONST_STRING_DECL(kSCPropNetProxiesGopherPort, "GopherPort"); 16 CONST_STRING_DECL(kSCPropNetProxiesGopherProxy, "GopherProxy"); 17 CONST_STRING_DECL(kSCPropNetProxiesHTTPEnable, "HTTPEnable"); 18 CONST_STRING_DECL(kSCPropNetProxiesHTTPPort, "HTTPPort"); 19 CONST_STRING_DECL(kSCPropNetProxiesHTTPProxy, "HTTPProxy"); 20 CONST_STRING_DECL(kSCPropNetProxiesHTTPSEnable, "HTTPSEnable"); 21 CONST_STRING_DECL(kSCPropNetProxiesHTTPSPort, "HTTPSPort"); 22 CONST_STRING_DECL(kSCPropNetProxiesHTTPSProxy, "HTTPSProxy"); 23 CONST_STRING_DECL(kSCPropNetProxiesRTSPEnable, "RTSPEnable"); 24 CONST_STRING_DECL(kSCPropNetProxiesRTSPPort, "RTSPPort"); 25 CONST_STRING_DECL(kSCPropNetProxiesRTSPProxy, "RTSPProxy"); 26 CONST_STRING_DECL(kSCPropNetProxiesSOCKSEnable, "SOCKSEnable"); 27 CONST_STRING_DECL(kSCPropNetProxiesSOCKSPort, "SOCKSPort"); 28 CONST_STRING_DECL(kSCPropNetProxiesSOCKSProxy, "SOCKSProxy"); 29 CONST_STRING_DECL(kSCPropNetProxiesProxyAutoConfigEnable, "ProxyAutoConfigEnable"); 30 CONST_STRING_DECL(kSCPropNetProxiesProxyAutoConfigJavaScript, "ProxyAutoConfigJavaScript"); 31 CONST_STRING_DECL(kSCPropNetProxiesProxyAutoConfigURLString, "ProxyAutoConfigURLString"); 32 CONST_STRING_DECL(kSCPropNetProxiesProxyAutoDiscoveryEnable, "ProxyAutoDiscoveryEnable"); 33