A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Sec-WebSocket-Protocol below:

Sec-WebSocket-Protocol header - HTTP | MDN

Sec-WebSocket-Protocol header

Baseline Widely available

The HTTP Sec-WebSocket-Protocol request and response header is used in the WebSocket opening handshake to negotiate a sub-protocol to use in the communication. This can be a well understood protocol, such as SOAP or WAMP, or a custom protocol understood by the client and server.

In a request the header specifies one or more WebSocket sub-protocols that the web application would like to use, in order of preference. These can be added as protocol values in multiple headers, or as comma separate values added to a single header.

In a response it specifies the sub-protocol selected by the server. This must be the first sub-protocol that the server supports from the list provided in the request header.

The request header is automatically added and populated by the browser using values specified by the application in the protocols argument to the WebSocket(). The sub-protocol selected by the server is made available to the web application in WebSocket.protocol.

Syntax
Sec-WebSocket-Protocol: <sub-protocols>
Directives
<sub-protocols>

A comma-separated list of sub-protocol names, in the order of preference. The sub-protocols may be selected from the IANA WebSocket Subprotocol Name Registry, or may be a custom name jointly understood by the client and the server.

As a response header, this is a single sub-protocol that the server selected.

Examples WebSocket opening handshake

The sub-protocol is specified in the original WebSocket handshake request. The request below shows that the client prefers soap, but also supports wamp.

GET /chat HTTP/1.1
Host: example.com:8000
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==
Sec-WebSocket-Version: 13
Sec-WebSocket-Protocol: soap, wamp

Specifying the protocols like this has the same effect:

Sec-WebSocket-Protocol: soap
Sec-WebSocket-Protocol: wamp

The response from the server will include the Sec-WebSocket-Protocol header, selecting the first sub-protocol that it supports from the client's preferences. Below that is shown as soap:

HTTP/1.1 101 Switching Protocols
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Accept: s3pPLMBiTxaQ9kYGzzhZRbK+xOo=
Sec-WebSocket-Protocol: soap
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4