2
0
mirror of https://github.com/esiur/esiur-js.git synced 2026-04-04 05:58:22 +00:00
Files
esiur-js/src/Net/Sockets/SocketState.js
2021-03-10 01:25:20 +03:00

7 lines
114 B
JavaScript

export default {
Initial : 0,
Listening : 1,
Connecting : 2,
Established : 3,
Closed: 4,
}