Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce 3DS MTU #14

Merged
merged 10 commits into from
Dec 22, 2023
4 changes: 2 additions & 2 deletions include/enet/protocol.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
/**
@file protocol.h
@brief ENet protocol
*/
Expand All @@ -10,7 +10,7 @@
enum
{
ENET_PROTOCOL_MINIMUM_MTU = 576,
#ifdef __WIIU__
#if defined(__WIIU__) || defined(__3DS__)
ENET_PROTOCOL_MAXIMUM_MTU = 1400,
cgutman marked this conversation as resolved.
Show resolved Hide resolved
#else
ENET_PROTOCOL_MAXIMUM_MTU = 4096,
Expand Down