diff options
author | Charles Krinke | 2009-04-17 21:48:48 +0000 |
---|---|---|
committer | Charles Krinke | 2009-04-17 21:48:48 +0000 |
commit | b4cb45bb79619306b25c67c770165ab752aeb742 (patch) | |
tree | 3d1a7d763a3cc3647aff6a07462971c9f12b2d5c /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |
parent | * Add Implementation of Linear Motor and Linear friction from the LSL Vehicle... (diff) | |
download | opensim-SC_OLD-b4cb45bb79619306b25c67c770165ab752aeb742.zip opensim-SC_OLD-b4cb45bb79619306b25c67c770165ab752aeb742.tar.gz opensim-SC_OLD-b4cb45bb79619306b25c67c770165ab752aeb742.tar.bz2 opensim-SC_OLD-b4cb45bb79619306b25c67c770165ab752aeb742.tar.xz |
Fixes Mantis # 3469. Thank you kindly, BlueWall, for a patch that:
This patch adds extended status reporting with the url
http://server:port/simstatusx/ [^] . The data is returned
in json format as "text/plain" type.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index ab1816f..6ac0acd 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -10290,5 +10290,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
10290 | LLPacketHandler handler = (LLPacketHandler) m_PacketHandler; | 10290 | LLPacketHandler handler = (LLPacketHandler) m_PacketHandler; |
10291 | return handler.PacketQueue.GetStats(); | 10291 | return handler.PacketQueue.GetStats(); |
10292 | } | 10292 | } |
10293 | |||
10294 | public string XReport() | ||
10295 | { | ||
10296 | return ""; | ||
10297 | } | ||
10293 | } | 10298 | } |
10294 | } | 10299 | } |