aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Hypergrid/UserAgentServerConnector.cs
diff options
context:
space:
mode:
authorDiva Canto2013-05-13 13:07:39 -0700
committerDiva Canto2013-05-13 13:07:39 -0700
commit4194d935ecd21a922859a640cb28acec7e5bae45 (patch)
tree2e673266346c5561729f90414307c04ed2265e34 /OpenSim/Server/Handlers/Hypergrid/UserAgentServerConnector.cs
parentGroups: Improve error handling on remote connector. (diff)
downloadopensim-SC_OLD-4194d935ecd21a922859a640cb28acec7e5bae45.zip
opensim-SC_OLD-4194d935ecd21a922859a640cb28acec7e5bae45.tar.gz
opensim-SC_OLD-4194d935ecd21a922859a640cb28acec7e5bae45.tar.bz2
opensim-SC_OLD-4194d935ecd21a922859a640cb28acec7e5bae45.tar.xz
Fixed mantis #6609 -- LoadPlugin error messages on Robust.
Diffstat (limited to 'OpenSim/Server/Handlers/Hypergrid/UserAgentServerConnector.cs')
-rw-r--r--OpenSim/Server/Handlers/Hypergrid/UserAgentServerConnector.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Hypergrid/UserAgentServerConnector.cs b/OpenSim/Server/Handlers/Hypergrid/UserAgentServerConnector.cs
index db62aaa..b20f467 100644
--- a/OpenSim/Server/Handlers/Hypergrid/UserAgentServerConnector.cs
+++ b/OpenSim/Server/Handlers/Hypergrid/UserAgentServerConnector.cs
@@ -62,10 +62,15 @@ namespace OpenSim.Server.Handlers.Hypergrid
62 private bool m_VerifyCallers = false; 62 private bool m_VerifyCallers = false;
63 63
64 public UserAgentServerConnector(IConfigSource config, IHttpServer server) : 64 public UserAgentServerConnector(IConfigSource config, IHttpServer server) :
65 this(config, server, null) 65 this(config, server, (IFriendsSimConnector)null)
66 { 66 {
67 } 67 }
68 68
69 public UserAgentServerConnector(IConfigSource config, IHttpServer server, string configName) :
70 this(config, server)
71 {
72 }
73
69 public UserAgentServerConnector(IConfigSource config, IHttpServer server, IFriendsSimConnector friendsConnector) : 74 public UserAgentServerConnector(IConfigSource config, IHttpServer server, IFriendsSimConnector friendsConnector) :
70 base(config, server, String.Empty) 75 base(config, server, String.Empty)
71 { 76 {