In quakedef.h
Find this
MAX_FITZQUAKE_DATAGRAM_MTU = 1400,
Change 1400 to 65527 so it reads
MAX_FITZQUAKE_DATAGRAM_MTU = 65527, // Was 1400 for routers
And recompile the engine. It's not router friendly, but you aren't really using a true server anyway.
And that should solve the cut-off you are experiencing when using -listen
Let me know the result, but I think that is the right limit.
Find this
MAX_FITZQUAKE_DATAGRAM_MTU = 1400,
Change 1400 to 65527 so it reads
MAX_FITZQUAKE_DATAGRAM_MTU = 65527, // Was 1400 for routers
And recompile the engine. It's not router friendly, but you aren't really using a true server anyway.
And that should solve the cut-off you are experiencing when using -listen
Let me know the result, but I think that is the right limit.
Comment