What Does 'opcode -1' Mean In Chrome?
I'm using Chrome browser and I'm trying to create a WebSocket connection (using javascript) but sometimes I get an error. When I'm looking in Developer Tools for the WS connection,
Solution 1:
WebSocket OPCODEs describe how to interpret the frame. The OPCODES are formally between 0-10, OPCODE -1 says "not frame that can be used":
https://tools.ietf.org/id/draft-ietf-hybi-thewebsocketprotocol-09.html#rfc.section.11.14
Baca Juga
- Javascript Only Works After Opening Developer Tools In Chrome
- Running Code Snippets From Google Chrome Console Command Line, Using (experimental) Code Snippets Feature?
- Why Does Debuggers Give You "undefined Is Not A Function" Instead Of Just Telling You The Name Of The Property/variable That Is Not A Function?
Post a Comment for "What Does 'opcode -1' Mean In Chrome?"