increased IPv4 TTL of LLUDP Sockets
Signed-off-by: BlueWall <jamesh@bluewallgroup.com>inv-download
parent
7e8bad05ec
commit
c6731c73fb
|
@ -216,6 +216,17 @@ namespace OpenMetaverse
|
|||
SocketType.Dgram,
|
||||
ProtocolType.Udp);
|
||||
|
||||
try
|
||||
{
|
||||
if (m_udpSocket.Ttl < 128)
|
||||
{
|
||||
m_udpSocket.Ttl = 128;
|
||||
}
|
||||
}
|
||||
catch (SocketException)
|
||||
{
|
||||
m_log.Debug("[UDPBASE]: Failed to increase default TTL");
|
||||
}
|
||||
try
|
||||
{
|
||||
// This udp socket flag is not supported under mono,
|
||||
|
|
Loading…
Reference in New Issue