| 1 | /* |
|---|---|
| 2 | * IXWebSocketMessageType.h |
| 3 | * Author: Benjamin Sergeant |
| 4 | * Copyright (c) 2017-2019 Machine Zone, Inc. All rights reserved. |
| 5 | */ |
| 6 | |
| 7 | #pragma once |
| 8 | |
| 9 | namespace ix |
| 10 | { |
| 11 | enum class WebSocketMessageType |
| 12 | { |
| 13 | Message = 0, |
| 14 | Open = 1, |
| 15 | Close = 2, |
| 16 | Error = 3, |
| 17 | Ping = 4, |
| 18 | Pong = 5, |
| 19 | Fragment = 6 |
| 20 | }; |
| 21 | } |
| 22 |