Created
February 12, 2014 02:12
-
-
Save adam-stokes/8948734 to your computer and use it in GitHub Desktop.
mojo::useragent websocket
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Mojo::Base -base; | |
use Mojo::UserAgent; | |
my $ua = Mojo::UserAgent->new; | |
$ua->websocket( | |
'wss://10.0.3.1:17070' => sub { | |
my ($ua, $tx) = @_; | |
say 'WebSocket handshake failed!' and return unless $tx->is_websocket; | |
$tx->on( | |
finish => sub { | |
my ($tx, $code, $reason) = @_; | |
say "WebSocket closed with status $code."; | |
} | |
); | |
$tx->on( | |
message => sub { | |
my ($tx, $msg) = @_; | |
say "WebSocket message: $msg"; | |
$tx->finish; | |
} | |
); | |
$tx->send('Hi!'); | |
} | |
); | |
Mojo::IOLoop->start unless Mojo::IOLoop->is_running; | |
__END__ | |
=pod | |
-- Non-blocking request (https://10.0.3.1:17070) | |
-- Switching to non-blocking mode | |
-- Connect (https:10.0.3.1:17070) | |
-- Client >>> Server (https://10.0.3.1:17070) | |
GET / HTTP/1.1 | |
Accept-Encoding: gzip | |
Connection: Upgrade | |
Sec-WebSocket-Version: 13 | |
Host: 10.0.3.1:17070 | |
Content-Length: 0 | |
Upgrade: websocket | |
User-Agent: Mojolicious (Perl) | |
Sec-WebSocket-Key: Mzg2NTk3Mzg1NDg3NjQ3Mg== | |
-- Client <<< Server (https://10.0.3.1:17070) | |
H | |
-- Client <<< Server (https://10.0.3.1:17070) | |
TTP/1.1 403 Forbidden | |
=cut |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment