aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers
diff options
context:
space:
mode:
authorDr Scofield2008-06-04 18:09:55 +0000
committerDr Scofield2008-06-04 18:09:55 +0000
commitcaee0288fbf5fdc2abfbaa0890d3de62110de324 (patch)
tree33fb76b77da568838eda6651f3a715ebfb0d1ab7 /OpenSim/Framework/Servers
parentchange clientCircuits_reverse to a synchronized hash table. This (diff)
downloadopensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.zip
opensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.tar.gz
opensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.tar.bz2
opensim-SC_OLD-caee0288fbf5fdc2abfbaa0890d3de62110de324.tar.xz
* adding XmppPresenceStanza and deserialization/reification support
having reached the intermediate level of .NET's XmlSudoku, i've now figured out how to do deserialization using different XmlSerializers (this stuff begins to grow on me, sigh). [still not used code, work-in-progress] * adding convenience property on OSHttpRequest.cs (from awebb)
Diffstat (limited to 'OpenSim/Framework/Servers')
-rw-r--r--OpenSim/Framework/Servers/OSHttpRequest.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/OSHttpRequest.cs b/OpenSim/Framework/Servers/OSHttpRequest.cs
index dac2347..d733f3d 100644
--- a/OpenSim/Framework/Servers/OSHttpRequest.cs
+++ b/OpenSim/Framework/Servers/OSHttpRequest.cs
@@ -67,6 +67,11 @@ namespace OpenSim.Framework.Servers
67 get { return _contentLength64; } 67 get { return _contentLength64; }
68 } 68 }
69 69
70 public long ContentLength64
71 {
72 get { return _contentLength64; }
73 }
74
70 public string ContentType 75 public string ContentType
71 { 76 {
72 get { return _contentType; } 77 get { return _contentType; }