revert last change and o fix the damm silly bug
parent
35e3c3dec4
commit
c4e453d948
|
@ -5319,8 +5319,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
lastzc = zc.ZeroCount;
|
lastzc = zc.ZeroCount;
|
||||||
|
|
||||||
CreateCompressedUpdateBlockZC(sop, mysp, zc);
|
CreateCompressedUpdateBlockZC(sop, mysp, zc);
|
||||||
//if (zc.Position < LLUDPServer.MAXPAYLOAD - 200)
|
if (zc.Position < LLUDPServer.MAXPAYLOAD - 200)
|
||||||
if (zc.Position < LLUDPServer.MAXPAYLOAD - 400)
|
|
||||||
{
|
{
|
||||||
//tau.Add(eu);
|
//tau.Add(eu);
|
||||||
++count;
|
++count;
|
||||||
|
@ -5404,10 +5403,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
Utils.UIntToBytes((uint)sop.ParentGroup.PseudoCRC, data, pos); pos += 4; //WRONG
|
Utils.UIntToBytes((uint)sop.ParentGroup.PseudoCRC, data, pos); pos += 4; //WRONG
|
||||||
Utils.UIntToBytes(primflags, data, pos); pos += 4;
|
Utils.UIntToBytes(primflags, data, pos); pos += 4;
|
||||||
|
|
||||||
//if (pos < (LLUDPServer.MAXPAYLOAD - 12))
|
++count;
|
||||||
if (pos < (LLUDPServer.MAXPAYLOAD - 200))
|
if (pos > (LLUDPServer.MAXPAYLOAD - 13))
|
||||||
++count;
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
// we need more packets
|
// we need more packets
|
||||||
UDPPacketBuffer newbuf = m_udpServer.GetNewUDPBuffer(m_udpClient.RemoteEndPoint);
|
UDPPacketBuffer newbuf = m_udpServer.GetNewUDPBuffer(m_udpClient.RemoteEndPoint);
|
||||||
|
@ -5420,6 +5417,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
buf = newbuf;
|
buf = newbuf;
|
||||||
data = buf.Data;
|
data = buf.Data;
|
||||||
pos = 18;
|
pos = 18;
|
||||||
|
|
||||||
count = 0;
|
count = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue