| 96 | } |
| 97 | |
| 98 | static inline void ws_frame_binary_final(bool masking, ws_frame_info *info) { |
| 99 | info->opcode = WS_OPCODE_CONTINUATION; |
| 100 | info->fin = true; |
| 101 | info->masking = masking; |
| 102 | } |
| 103 | |
| 104 | static inline void ws_frame_binary_alone(bool masking, ws_frame_info *info) { |
| 105 | info->opcode = WS_OPCODE_BINARY; |
nothing calls this directly
no outgoing calls
no test coverage detected