File Coverage

blib/lib/Net/WebSocket/Frame/pong.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Net::WebSocket::Frame::pong;
2              
3             =encoding utf-8
4              
5             =head1 NAME
6              
7             Net::WebSocket::Frame::pong
8              
9             =head1 SYNOPSIS
10              
11             my $frm = Net::WebSocket::Frame::pong->new(
12              
13             #Optional, can be either empty (default) or four random bytes
14             mask => q<>,
15              
16             payload => $payload,
17             );
18              
19             $frm->get_type(); #"ping"
20              
21             $frm->is_control(); #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             pong messages can have only up to 125 bytes in their payload.
31              
32             =cut
33              
34 11     11   132921 use strict;
  11         37  
  11         332  
35 11     11   55 use warnings;
  11         22  
  11         338  
36              
37 11         60 use parent qw(
38             Net::WebSocket::Base::ControlFrame
39 11     11   60 );
  11         29  
40              
41 11     11   751 use constant get_opcode => 10;
  11         27  
  11         725  
42              
43             1;