mirror of
https://github.com/opensim/opensim.git
synced 2026-08-14 17:55:39 +08:00
* Added license info to a few files it was missing from. * Fleshed out the landbuy interfaces * If you add '-helperuri http://127.0.0.1:9000/' to your list of parameters you tell the client to use when you start it up you can transfer ownership of parcels now in standalone. Structured gridmode requires a lot more work, see the documentation in the example money module. The example money module is not secure especially in standalone mode.
32 lines
639 B
C#
32 lines
639 B
C#
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;
|
|
public string id;
|
|
public string lang;
|
|
public string nodeName;
|
|
|
|
public Stanza(XmlNode node, Object defaults, bool hasID)
|
|
{
|
|
|
|
}
|
|
//public virtual XmlElement getNode()
|
|
//{
|
|
//return new XmlElement();
|
|
//}
|
|
public virtual string generateId()
|
|
{
|
|
return "";
|
|
}
|
|
}
|
|
}
|