Opcode values for WebSocket frames.
| 36 | |
| 37 | |
| 38 | class Opcode(enum.IntEnum): |
| 39 | """Opcode values for WebSocket frames.""" |
| 40 | |
| 41 | CONT, TEXT, BINARY = 0x00, 0x01, 0x02 |
| 42 | CLOSE, PING, PONG = 0x08, 0x09, 0x0A |
| 43 | |
| 44 | |
| 45 | OP_CONT = Opcode.CONT |
no outgoing calls
no test coverage detected
searching dependent graphs…