NetUnreliableSizeBehaviour Enumeration |
Behaviour of unreliable sends above MTU
Namespace:
Internal.Lidgren.Network
Assembly:
NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax public enum NetUnreliableSizeBehaviour
Members
| Member name | Value | Description |
---|
| IgnoreMTU | 0 |
Sending an unreliable message will ignore MTU and send everything in a single packet; this is the new default
|
| NormalFragmentation | 1 |
Old behaviour; use normal fragmentation for unreliable messages - if a fragment is dropped, memory for received fragments are never reclaimed!
|
| DropAboveMTU | 2 |
Alternate behaviour; just drops unreliable messages above MTU
|
See Also