File Coverage

blib/lib/Net/WebSocket/Frame/ping.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1             package Net::WebSocket::Frame::ping;
2              
3             =encoding utf-8
4              
5             =HEAD1
6              
7             Net::WebSocket::Frame:ping:
8              
9             =head1 SYNOPSIS
10              
11             my $frm = Net::WebSocket::Frame::ping->new(
12              
13             #Optional, can be either empty (default) or four random bytes
14             mask => q<>,
15              
16             payload_sr => \$payload,
17             );
18              
19             $frm->get_type(); #"ping"
20              
21             $frm->is_control_frame(); #1
22              
23             my $mask = $frm->get_mask_bytes();
24              
25             my $payload = $frm->get_payload();
26              
27             my $serialized = $frm->to_bytes();
28              
29             Note that, L,
30             ping messages can have only up to 125 bytes in their payload.
31              
32             =cut
33              
34 2     2   1210 use strict;
  2         5  
  2         53  
35 2     2   9 use warnings;
  2         3  
  2         46  
36              
37 2         8 use parent qw(
38             Net::WebSocket::Base::ControlFrame
39 2     2   8 );
  2         4  
40              
41 2     2   79 use constant get_opcode => 9;
  2         3  
  2         147  
42              
43             sub new {
44 2     2 0 103 my ($class, @opts) = @_;
45              
46 2         10 return $class->SUPER::new( @opts, type => 'ping' );
47             }
48              
49             1;