Home | History | Annotate | Download | only in websockets

Lines Matching refs:opcode

24   typedef int OpCode;
39 // Return true if |opcode| is one of the data opcodes known to this
41 static bool IsKnownDataOpCode(OpCode opcode) {
42 return opcode == kOpCodeContinuation || opcode == kOpCodeText ||
43 opcode == kOpCodeBinary;
46 // Return true if |opcode| is one of the control opcodes known to this
48 static bool IsKnownControlOpCode(OpCode opcode) {
49 return opcode == kOpCodeClose || opcode == kOpCodePing ||
50 opcode == kOpCodePong;
62 explicit WebSocketFrameHeader(OpCode opCode)
67 opcode(opCode),
80 OpCode opcode;