File Coverage

blib/lib/Net/Async/WebSocket.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1             # You may distribute under the terms of either the GNU General Public License
2             # or the Artistic License (the same terms as Perl itself)
3             #
4             # (C) Paul Evans, 2010-2024 -- leonerd@leonerd.org.uk
5              
6             package Net::Async::WebSocket 0.14;
7              
8 1     1   387208 use v5.14;
  1         5  
9 1     1   13 use warnings;
  1         2  
  1         97  
10              
11             =head1 NAME
12              
13             C - use WebSockets with C
14              
15             =head1 DESCRIPTION
16              
17             This distribution provides modules that implement the WebSocket protocol, and
18             allows either servers or clients to be written based on L.
19              
20             To implement a server, see L.
21              
22             To implement a client, see L.
23              
24             This module itself does not provide any code, and exists only to provide the
25             module C<$VERSION> and top-level documentation.
26              
27             =cut
28              
29             =head1 SEE ALSO
30              
31             =over 8
32              
33             =item *
34              
35             L - WebSocket protocol
36              
37             =back
38              
39             =head1 AUTHOR
40              
41             Paul Evans
42              
43             =cut
44              
45             0x55AA;