File: WebSocket.pm

package info (click to toggle)
libnet-async-websocket-perl 0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 156 kB
  • sloc: perl: 519; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 911 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#  You may distribute under the terms of either the GNU General Public License
#  or the Artistic License (the same terms as Perl itself)
#
#  (C) Paul Evans, 2010-2024 -- leonerd@leonerd.org.uk

package Net::Async::WebSocket 0.14;

use v5.14;
use warnings;

=head1 NAME

C<Net::Async::WebSocket> - use WebSockets with C<IO::Async>

=head1 DESCRIPTION

This distribution provides modules that implement the WebSocket protocol, and
allows either servers or clients to be written based on L<IO::Async>.

To implement a server, see L<Net::Async::WebSocket::Server>.

To implement a client, see L<Net::Async::WebSocket::Client>.

This module itself does not provide any code, and exists only to provide the
module C<$VERSION> and top-level documentation.

=cut

=head1 SEE ALSO

=over 8

=item *

L<Protocol::WebSocket> - WebSocket protocol

=back

=head1 AUTHOR

Paul Evans <leonerd@leonerd.org.uk>

=cut

0x55AA;