aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/XMPP/Stanza.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-04-02 01:03:31 +0000
committerTeravus Ovares2008-04-02 01:03:31 +0000
commitb790a16e986a0296b3a006f0db2b1011e5377ce9 (patch)
tree544aa40283c709476038bc3fe53b6611d919bec9 /OpenSim/Framework/Communications/XMPP/Stanza.cs
parent* Remove the quit command from the inventory console which was actually addin... (diff)
downloadopensim-SC_OLD-b790a16e986a0296b3a006f0db2b1011e5377ce9.zip
opensim-SC_OLD-b790a16e986a0296b3a006f0db2b1011e5377ce9.tar.gz
opensim-SC_OLD-b790a16e986a0296b3a006f0db2b1011e5377ce9.tar.bz2
opensim-SC_OLD-b790a16e986a0296b3a006f0db2b1011e5377ce9.tar.xz
* Updating the version of the ODE library. (big update). The Mac library needs to be updated still.
* Adding some XMPP stuff that's incomplete.
Diffstat (limited to 'OpenSim/Framework/Communications/XMPP/Stanza.cs')
-rw-r--r--OpenSim/Framework/Communications/XMPP/Stanza.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/XMPP/Stanza.cs b/OpenSim/Framework/Communications/XMPP/Stanza.cs
new file mode 100644
index 0000000..4c57114
--- /dev/null
+++ b/OpenSim/Framework/Communications/XMPP/Stanza.cs
@@ -0,0 +1,31 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Xml;
5
6namespace OpenSim.Framework.Communications.XMPP
7{
8 public class Stanza
9 {
10
11 public string localName = String.Empty;
12 public JId to;
13 public JId from;
14 string id;
15 string lang;
16 string nodeName;
17
18 public Stanza(XmlNode node, Object defaults, bool hasID)
19 {
20
21 }
22 //public virtual XmlElement getNode()
23 //{
24 //return new XmlElement();
25 //}
26 public virtual string generateId()
27 {
28 return "";
29 }
30 }
31}