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>2003-06-06 11:00:57 +0400
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>2003-06-06 11:00:57 +0400
commit7b3d02503630587db26797c2cec44f388d358b90 (patch)
tree1d70d3c68fc310b7296980f66c80920ef29dd3c8 /data
parent217d1621f744e1c295f45e8d974c77e4ce121b6c (diff)
added authentionModules and defaultProxy sections
svn path=/trunk/mono/; revision=15151
Diffstat (limited to 'data')
-rw-r--r--data/machine.config12
1 files changed, 12 insertions, 0 deletions
diff --git a/data/machine.config b/data/machine.config
index 7eece2e2cd6..59e682dddfb 100644
--- a/data/machine.config
+++ b/data/machine.config
@@ -25,12 +25,24 @@
<sectionGroup name="system.net">
<section name="connectionManagement"
type="System.Net.Configuration.ConnectionManagementHandler, System" />
+ <section name="authenticationModules"
+ type="System.Net.Configuration.NetAuthenticationModuleHandler, System" />
+ <section name="defaultProxy"
+ type="System.Net.Configuration.DefaultProxyHandler, System" />
</sectionGroup>
</configSections>
<system.net>
<connectionManagement>
<add address="*" maxconnection="2" />
</connectionManagement>
+ <authenticationModules>
+ <add type="System.Net.BasicClient" />
+ </authenticationModules>
+ <defaultProxy>
+ <proxy />
+ <!-- bypassonlocal and proxyaddress are ok -->
+ <!-- usessystemdefault is not supported -->
+ </defaultProxy>
</system.net>
<system.web>
<httpHandlers>