File Coverage

blib/lib/Net/WebSocket/Frame/binary.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::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 => $payload_octet_string,
20             );
21              
22             $frm->get_type(); #"binary"
23              
24             $frm->is_control(); #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 4     4   2390 use strict;
  4         9  
  4         123  
37 4     4   15 use warnings;
  4         8  
  4         106  
38              
39 4         19 use parent qw(
40             Net::WebSocket::Base::DataFrame
41 4     4   16 );
  4         7  
42              
43 4     4   182 use constant get_opcode => 2;
  4         7  
  4         186  
44              
45             1;