Home
last modified time | relevance | path

Searched refs:OpCodeBinary (Results 1 – 9 of 9) sorted by relevance

/dports/www/qt5-websockets/kde-qtwebsockets-5.15.2p4/src/websockets/
H A Dqwebsocketprotocol_p.h68 OpCodeBinary = 0x2, enumerator
86 return ((code > OpCodeBinary) && (code < OpCodeClose)) || (code > OpCodePong); in isOpCodeReserved()
H A Dqwebsocketdataprocessor.cpp322 case QWebSocketProtocol::OpCodeBinary: in processControlFrame()
H A Dqwebsocket_p.cpp777 QWebSocketProtocol::OpCodeBinary : QWebSocketProtocol::OpCodeText; in doWriteFrames()
/dports/www/qt5-websockets-qml/kde-qtwebsockets-5.15.2p4/src/websockets/
H A Dqwebsocketprotocol_p.h68 OpCodeBinary = 0x2, enumerator
86 return ((code > OpCodeBinary) && (code < OpCodeClose)) || (code > OpCodePong); in isOpCodeReserved()
H A Dqwebsocketdataprocessor.cpp322 case QWebSocketProtocol::OpCodeBinary: in processControlFrame()
H A Dqwebsocket_p.cpp777 QWebSocketProtocol::OpCodeBinary : QWebSocketProtocol::OpCodeText; in doWriteFrames()
/dports/www/cutelyst/cutelyst-3.2.0/server/
H A Dprotocolwebsocket.cpp324 …opcode != ProtoRequestHttp::OpCodeText && opcode != ProtoRequestHttp::OpCodeBinary && opcode != Pr… in websocket_parse_header()
325 …_opcode && (opcode == ProtoRequestHttp::OpCodeText || opcode == ProtoRequestHttp::OpCodeBinary))) { in websocket_parse_header()
340 if (opcode == ProtoRequestHttp::OpCodeText || opcode == ProtoRequestHttp::OpCodeBinary) { in websocket_parse_header()
435 case ProtoRequestHttp::OpCodeBinary: in websocket_parse_payload()
449 case ProtoRequestHttp::OpCodeBinary: in websocket_parse_payload()
H A Dprotocolhttp.h48 OpCodeBinary = 0x2, enumerator
H A Dprotocolhttp.cpp471 … headers = ProtocolWebSocket::createWebsocketHeader(ProtoRequestHttp::OpCodeBinary, quint64(messag… in webSocketSendBinaryMessage()