File Coverage

blib/lib/Protocol/SPDY/Client.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Protocol::SPDY::Client;
2             {
3             $Protocol::SPDY::Client::VERSION = '0.999_007';
4             }
5 3     3   13 use strict;
  3         3  
  3         78  
6 3     3   10 use warnings;
  3         3  
  3         64  
7 3     3   11 use parent qw(Protocol::SPDY::Base);
  3         3  
  3         10  
8              
9             =head1 NAME
10              
11             Protocol::SPDY::Client - client-side handling for SPDY sessions
12              
13             =head1 VERSION
14              
15             version 0.999_007
16              
17             =head1 SYNOPSIS
18              
19             use Protocol::SPDY;
20              
21             =head1 DESCRIPTION
22              
23             See L and L.
24              
25             =cut
26              
27             =head1 METHODS
28              
29             =cut
30              
31             =head2 initial_stream_id
32              
33             Client streams always start at 2.
34              
35             =cut
36              
37 1     1 1 3 sub initial_stream_id { 1 }
38              
39             1;
40              
41             __END__