UNPKG
jsp-raknet
Version:
latest (2.2.0)
2.2.0
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.5.0
Basic RakNet implementation written in Javascript
github.com/JSPrismarine/RakNet
JSPrismarine/RakNet
jsp-raknet
/
js
/
protocol
/
bitflags.js
10 lines
(9 loc)
•
180 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
// Bit flags used to recognize packets by its header
const
BitFlags
= {
Valid
:
0x80
,
Ack
:
0x40
,
Nack
:
0x20
,
Split
:
0x10
};
module
.
exports
=
BitFlags
;