updated to use lastest version of libsl but is currently broke when using SL viewer 1.15.02, due to big changes in the message templates.

This commit is contained in:
MW
2007-04-25 18:12:06 +00:00
parent 68b33294b1
commit 9ed0a8dbad
48 changed files with 2539 additions and 135 deletions

View File

@@ -374,7 +374,7 @@ namespace OpenSim
this.gridLocalAsset = Convert.ToBoolean(attri);
}
// Grid mode hack to use local asset server
// Grid mode hack to use local asset server
attri = "";
attri = configData.GetAttribute("PhysicsEngine");
if (attri == "")
@@ -437,6 +437,7 @@ namespace OpenSim
Packet packet = null;
int numBytes = Server.EndReceiveFrom(result, ref epSender);
int packetEnd = numBytes - 1;
packet = Packet.BuildPacket(RecvBuffer, ref packetEnd, ZeroBuffer);
// This is either a new client or a packet to send to an old one
@@ -509,6 +510,7 @@ namespace OpenSim
{ // invalid client
Console.Error.WriteLine("Main.cs:OnReceivedData() - WARNING: Got a packet from an invalid client - " + epSender.ToString());
}
Server.BeginReceiveFrom(RecvBuffer, 0, RecvBuffer.Length, SocketFlags.None, ref epSender, ReceivedData, null);
}