mirror of
https://github.com/PretendoNetwork/nex-go.git
synced 2025-04-02 11:02:14 -04:00
18 lines
No EOL
426 B
Go
18 lines
No EOL
426 B
Go
package nex
|
|
|
|
const (
|
|
// FlagAck is the ID for the PRUDP Ack Flag
|
|
FlagAck uint16 = 0x1
|
|
|
|
// FlagReliable is the ID for the PRUDP Reliable Flag
|
|
FlagReliable uint16 = 0x2
|
|
|
|
// FlagNeedsAck is the ID for the PRUDP NeedsAck Flag
|
|
FlagNeedsAck uint16 = 0x4
|
|
|
|
// FlagHasSize is the ID for the PRUDP HasSize Flag
|
|
FlagHasSize uint16 = 0x8
|
|
|
|
// FlagMultiAck is the ID for the PRUDP MultiAck Flag
|
|
FlagMultiAck uint16 = 0x200
|
|
) |