Merge pull request #3926 from ey6es/master

Reduce the MTU size to deal with Windows networking issue.
This commit is contained in:
Andrzej Kapolka 2014-12-08 18:08:52 -08:00
commit dbbfccc309

View file

@ -19,7 +19,7 @@
#include "MetavoxelMessages.h"
// in sequencer parlance, a "packet" may consist of multiple datagrams. clarify when we refer to actual datagrams
const int MAX_DATAGRAM_SIZE = MAX_PACKET_SIZE;
const int MAX_DATAGRAM_SIZE = 1450;
const int DEFAULT_MAX_PACKET_SIZE = 3000;