Home
last modified time | relevance | path

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

/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
DNanoWSD.java71 private WebSocketFrame.OpCode continuousOpCode = null; field in NanoWSD.WebSocket
193 if (this.continuousOpCode != null) { in handleFrameFragment()
196 this.continuousOpCode = frame.getOpCode(); in handleFrameFragment()
201 if (this.continuousOpCode == null) { in handleFrameFragment()
204 onMessage(new WebSocketFrame(this.continuousOpCode, this.continuousFrames)); in handleFrameFragment()
205 this.continuousOpCode = null; in handleFrameFragment()
207 } else if (this.continuousOpCode == null) { in handleFrameFragment()
226 } else if (this.continuousOpCode != null) { in handleWebsocketFrame()