mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 14:08:19 +00:00
Fix NET_MAX_CHUNKHEADERSIZE
5
-> 3
Probably has no big impact but 5 is just wrong.
Was also casually fixed in upstream.
c2e5771a15 (diff-706d36dc3648350992fd7fb372d2461cbddcec7ac79f1f905f329ada2bcda814L49)
This commit is contained in:
parent
15620354b9
commit
ae41ff3fb3
|
@ -57,7 +57,7 @@ enum
|
|||
|
||||
NET_MAX_PACKETSIZE = 1400,
|
||||
NET_MAX_PAYLOAD = NET_MAX_PACKETSIZE - 6,
|
||||
NET_MAX_CHUNKHEADERSIZE = 5,
|
||||
NET_MAX_CHUNKHEADERSIZE = 3,
|
||||
NET_PACKETHEADERSIZE = 3,
|
||||
NET_MAX_CLIENTS = 64,
|
||||
NET_MAX_CONSOLE_CLIENTS = 4,
|
||||
|
|
Loading…
Reference in a new issue