diff --git a/src/freenet/io/comm/UdpSocketHandler.java b/src/freenet/io/comm/UdpSocketHandler.java index c004613a9d..040d401bd7 100644 --- a/src/freenet/io/comm/UdpSocketHandler.java +++ b/src/freenet/io/comm/UdpSocketHandler.java @@ -353,7 +353,7 @@ public void sendPacket(byte[] blockToSend, Peer destination, boolean allowLocalA // http://www.studenten-ins-netz.net/inhalt/service_faq.html // officially GRE is 1476 and PPPoE is 1492. // unofficially, PPPoE is often 1472 (seen in the wild). Also PPPoATM is sometimes 1472. - static final int MAX_ALLOWED_MTU = 1280; + static final int MAX_ALLOWED_MTU = 1492; static final int UDPv4_HEADERS_LENGTH = 28; static final int UDPv6_HEADERS_LENGTH = 48; // conservative estimation when AF is not known