From b790a16e986a0296b3a006f0db2b1011e5377ce9 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Wed, 2 Apr 2008 01:03:31 +0000 Subject: * Updating the version of the ODE library. (big update). The Mac library needs to be updated still. * Adding some XMPP stuff that's incomplete. --- OpenSim/Framework/Communications/XMPP/Stanza.cs | 31 +++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 OpenSim/Framework/Communications/XMPP/Stanza.cs (limited to 'OpenSim/Framework/Communications/XMPP/Stanza.cs') 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 @@ +using System; +using System.Collections.Generic; +using System.Text; +using System.Xml; + +namespace OpenSim.Framework.Communications.XMPP +{ + public class Stanza + { + + public string localName = String.Empty; + public JId to; + public JId from; + string id; + string lang; + string nodeName; + + public Stanza(XmlNode node, Object defaults, bool hasID) + { + + } + //public virtual XmlElement getNode() + //{ + //return new XmlElement(); + //} + public virtual string generateId() + { + return ""; + } + } +} -- cgit v1.1