Protocol::WebSocket::Handshake::Server − WebSocket Server Handshake
my $h =
Protocol::WebSocket::Handshake::Server−>new;
# Parse client request
$h−>parse(<<"EOF");
WebSocket HTTP message
EOF
$h−>error; # Check if there were any errors
$h−>is_done; # Returns 1
# Create response
$h−>to_string;
Construct or parse a server WebSocket handshake. This module is written for convenience, since using request and response directly requires the same code again and again.
Create a new Protocol::WebSocket::Handshake::Server instance.
my $env = {
HTTP_HOST => 'example.com',
HTTP_CONNECTION => 'Upgrade',
...
};
my $handshake =
Protocol::WebSocket::Handshake::Server−>new_from_psgi($env);
Create a new Protocol::WebSocket::Handshake::Server instance from PSGI environment.
$handshake−>parse($buffer);
$handshake−>parse($handle);
Parse a WebSocket client request. Returns "undef" and sets "error" attribute on error.
When buffer is passed it’s modified (unless readonly).
$handshake−>build_frame;
Builds Protocol::WebSocket::Frame with an appropriate version.
Construct a WebSocket server response.
Check whether handshake is in body state.
Check whether handshake is done.