1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-16 23:26:32 +09:00

Crude Path MTU detection added

This commit is contained in:
lidgren
2010-12-12 19:07:55 +00:00
parent 55cdf75c5f
commit 772d80835b
12 changed files with 336 additions and 10 deletions

View File

@@ -69,7 +69,7 @@ namespace ChatClient
Output(chat);
break;
default:
Output("Unhandled type: " + im.MessageType);
Output("Unhandled type: " + im.MessageType + " " + im.LengthBytes + " bytes");
break;
}
}

View File

@@ -77,7 +77,7 @@ namespace ChatServer
s_server.SendMessage(om, all, NetDeliveryMethod.ReliableOrdered, 0);
break;
default:
Output("Unhandled type: " + im.MessageType);
Output("Unhandled type: " + im.MessageType + " " + im.LengthBytes + " bytes " + im.DeliveryMethod + "|" + im.SequenceChannel);
break;
}
}