File Coverage

blib/lib/Net/WebSocket/Frame/binary.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Net::WebSocket::Frame::binary;
2              
3             =encoding utf-8
4              
5             =head1 NAME
6              
7             Net::WebSocket::Frame::binary
8              
9             =head1 SYNOPSIS
10              
11             my $frm = Net::WebSocket::Frame::binary->new(
12              
13             #This flag defaults to on
14             fin => 1,
15              
16             #Optional, can be either empty (default) or four random bytes
17             mask => q<>,
18              
19             payload_sr => \$payload_text,
20             );
21              
22             $frm->get_type(); #"binary"
23              
24             $frm->is_control_frame(); #0
25              
26             my $mask = $frm->get_mask_bytes();
27              
28             my $payload = $frm->get_payload();
29              
30             my $serialized = $frm->to_bytes();
31              
32             $frm->set_fin(); #turns on
33              
34             =cut
35              
36 1         7 use parent qw(
37             Net::WebSocket::Base::DataFrame
38 1     1   539 );
  1         3  
39              
40 1     1   82 use constant get_opcode => 2;
  1         2  
  1         58  
41              
42             1;