This repository has been archived on 2023-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
hamakaze/Hamakaze/WebSocket/WsOpcode.cs

14 lines
258 B
C#
Raw Normal View History

2022-04-09 22:34:05 +00:00
namespace Hamakaze.WebSocket {
public enum WsOpcode : byte {
DataContinue = 0x00,
DataText = 0x01,
DataBinary = 0x02,
CtrlClose = 0x08,
CtrlPing = 0x09,
CtrlPong = 0x0A,
FlagFinal = 0x80,
}
}