aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs
diff options
context:
space:
mode:
authorTeravus Ovares2009-03-27 22:13:09 +0000
committerTeravus Ovares2009-03-27 22:13:09 +0000
commit52c482a7a7b297715cbcd7460edb1ad07d7a06c6 (patch)
tree67fbfb7d080f5c6d5575c1be39d8c92a46ab6360 /OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs
parent* refactor: call some EventManager triggers directly rather than through scene (diff)
downloadopensim-SC_OLD-52c482a7a7b297715cbcd7460edb1ad07d7a06c6.zip
opensim-SC_OLD-52c482a7a7b297715cbcd7460edb1ad07d7a06c6.tar.gz
opensim-SC_OLD-52c482a7a7b297715cbcd7460edb1ad07d7a06c6.tar.bz2
opensim-SC_OLD-52c482a7a7b297715cbcd7460edb1ad07d7a06c6.tar.xz
* This updates LibOMV to the current release 0.6.0 on March 19 2009
* Important: HttpServer.dll was changed to HttpServer_OpenSim.dll so that the HttpServer references do not conflict if you've copied the OpenMetaverse.Http.dll and requirements to the OpenSimulator bin folder. This means that if you reference HttpServer.dll in any projects, you will need to change the reference to HttpServer_OpenSim.dll. It still uses the Same HttpServer namespace though.
Diffstat (limited to '')
-rw-r--r--OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs b/OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs
index f9e7889..5080405 100644
--- a/OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs
+++ b/OpenSim/Grid/UserServer.Modules/MessageServersConnector.cs
@@ -74,8 +74,8 @@ namespace OpenSim.Grid.UserServer.Modules
74 74
75 private BaseHttpServer m_httpServer; 75 private BaseHttpServer m_httpServer;
76 76
77 private BlockingQueue<PresenceNotification> m_NotifyQueue = 77 private OpenSim.Framework.BlockingQueue<PresenceNotification> m_NotifyQueue =
78 new BlockingQueue<PresenceNotification>(); 78 new OpenSim.Framework.BlockingQueue<PresenceNotification>();
79 79
80 Thread m_NotifyThread; 80 Thread m_NotifyThread;
81 81