diff options
author | Homer Horwitz | 2008-10-22 17:06:23 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-10-22 17:06:23 +0000 |
commit | 80689c98b4eaa605c91eda6434f51b625c143915 (patch) | |
tree | bc5844151e45123015cce33d8223748c8bb668e4 /OpenSim/Framework/Servers | |
parent | Thank you kindly, Nlin for a patch that: (diff) | |
download | opensim-SC_OLD-80689c98b4eaa605c91eda6434f51b625c143915.zip opensim-SC_OLD-80689c98b4eaa605c91eda6434f51b625c143915.tar.gz opensim-SC_OLD-80689c98b4eaa605c91eda6434f51b625c143915.tar.bz2 opensim-SC_OLD-80689c98b4eaa605c91eda6434f51b625c143915.tar.xz |
- Added BaseHttpServer.Stop
- Added "register" command to MessagingServer to re-register with the
UserServer after that crashed/was restarted.
Diffstat (limited to 'OpenSim/Framework/Servers')
-rw-r--r-- | OpenSim/Framework/Servers/BaseHttpServer.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/BaseHttpServer.cs b/OpenSim/Framework/Servers/BaseHttpServer.cs index 18bb018..7e8130a 100644 --- a/OpenSim/Framework/Servers/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/BaseHttpServer.cs | |||
@@ -1357,6 +1357,11 @@ namespace OpenSim.Framework.Servers | |||
1357 | } | 1357 | } |
1358 | } | 1358 | } |
1359 | 1359 | ||
1360 | public void Stop() | ||
1361 | { | ||
1362 | m_httpListener2.Stop(); | ||
1363 | } | ||
1364 | |||
1360 | public void RemoveStreamHandler(string httpMethod, string path) | 1365 | public void RemoveStreamHandler(string httpMethod, string path) |
1361 | { | 1366 | { |
1362 | string handlerKey = GetHandlerKey(httpMethod, path); | 1367 | string handlerKey = GetHandlerKey(httpMethod, path); |