mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
* All remoting calls are now using Serializable values
* There's still goofyness though, because other regions are denying child agent avatar. * Still more debugging required.
This commit is contained in:
@@ -235,6 +235,7 @@ namespace OpenSim.Framework
|
||||
m_externalHostName = ConvertFrom.ExternalHostName;
|
||||
m_remotingPort = ConvertFrom.RemotingPort;
|
||||
RemotingAddress = ConvertFrom.RemotingAddress;
|
||||
RegionID = LLUUID.Zero;
|
||||
}
|
||||
//not in use, should swap to nini though.
|
||||
public void LoadFromNiniSource(IConfigSource source)
|
||||
|
||||
@@ -72,7 +72,7 @@ namespace OpenSim.Framework
|
||||
m_internalEndPoint = new IPEndPoint(IPAddress.Parse("0.0.0.0"), (int) port);
|
||||
}
|
||||
|
||||
public LLUUID RegionID = LLUUID.Zero;
|
||||
public Guid RegionID = LLUUID.Zero.UUID;
|
||||
|
||||
public uint m_remotingPort;
|
||||
public uint RemotingPort
|
||||
|
||||
25
OpenSim/Framework/sLLVector3.cs
Normal file
25
OpenSim/Framework/sLLVector3.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using libsecondlife;
|
||||
|
||||
|
||||
namespace OpenSim.Framework
|
||||
{
|
||||
[Serializable]
|
||||
public class sLLVector3
|
||||
{
|
||||
public sLLVector3()
|
||||
{
|
||||
|
||||
}
|
||||
public sLLVector3(LLVector3 v)
|
||||
{
|
||||
x = v.X;
|
||||
y = v.Y;
|
||||
z = v.Z;
|
||||
}
|
||||
public float x;
|
||||
public float y;
|
||||
public float z;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user