2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-05-06 20:02:59 +00:00
esiur-dart/bin/Net/Sockets/SocketState.dart
2019-08-07 05:12:10 +03:00

9 lines
144 B
Dart

enum SocketState
{
Initial,
Listening,
Connecting,
Established,
Closed,
Terminated
}