xamarin-macios/tests/monotouch-test/example.pac

10 строки
283 B
Plaintext
Исходник Постоянная ссылка Обычный вид История

// Example PAC file that returns a proxy for the urls that have the
// xamarin domain name.
function FindProxyForURL(url, host) {
if (dnsDomainIs(host, "dotnet.microsoft.com"))
return "PROXY example.com:8080";
if (dnsDomainIs(host, "microsoft.com"))
return "DIRECT";
}