Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2005-11-18 19:16:00 +0300
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2005-11-18 19:16:00 +0300
commitccac231e1e7f3539bb39b26567e108675edc985d (patch)
treeb3c54d4dd95ade0d8f0f00b2066b9718dc4aea70 /data
parentda92cc320f3b29ed7619cc1c2c940833f4927813 (diff)
patch by Michael Hutchinson to use the environment variable http_proxy
svn path=/trunk/mono/; revision=53237
Diffstat (limited to 'data')
-rw-r--r--data/net_1_1/machine.config8
-rw-r--r--data/net_2_0/machine.config8
2 files changed, 10 insertions, 6 deletions
diff --git a/data/net_1_1/machine.config b/data/net_1_1/machine.config
index dd44bce11b0..3540f71215a 100644
--- a/data/net_1_1/machine.config
+++ b/data/net_1_1/machine.config
@@ -62,9 +62,11 @@
<add type="System.Net.NtlmClient, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</authenticationModules>
<defaultProxy>
- <proxy />
- <!-- bypassonlocal and proxyaddress are ok -->
- <!-- usessystemdefault is not supported -->
+ <proxy
+ usesystemdefault = "true"
+ bypassonlocal = "true"
+ />
+ <!-- proxyaddress can also be set -->
</defaultProxy>
<webRequestModules>
<add prefix="http" type="System.Net.HttpRequestCreator, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
diff --git a/data/net_2_0/machine.config b/data/net_2_0/machine.config
index 538ad1cca97..5c7c16be9f9 100644
--- a/data/net_2_0/machine.config
+++ b/data/net_2_0/machine.config
@@ -63,9 +63,11 @@
<add type="System.Net.NtlmClient, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</authenticationModules>
<defaultProxy>
- <proxy />
- <!-- bypassonlocal and proxyaddress are ok -->
- <!-- usessystemdefault is not supported -->
+ <proxy
+ usesystemdefault = "true"
+ bypassonlocal = "true"
+ />
+ <!-- proxyaddress can also be set -->
</defaultProxy>
<webRequestModules>
<add prefix="http" type="System.Net.HttpRequestCreator, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />