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             $Protocol::SPDY::Client::VERSION = '1.001';
3 3     3   13 use strict;
  3         4  
  3         105  
4 3     3   12 use warnings;
  3         4  
  3         77  
5 3     3   12 use parent qw(Protocol::SPDY::Base);
  3         4  
  3         13  
6              
7             =head1 NAME
8              
9             Protocol::SPDY::Client - client-side handling for SPDY sessions
10              
11             =head1 VERSION
12              
13             version 1.001
14              
15             =head1 SYNOPSIS
16              
17             use Protocol::SPDY;
18              
19             =head1 DESCRIPTION
20              
21             See L and L.
22              
23             =cut
24              
25             =head1 METHODS
26              
27             =cut
28              
29             =head2 initial_stream_id
30              
31             Client streams always start at 2.
32              
33             =cut
34              
35 1     1 1 4 sub initial_stream_id { 1 }
36              
37             1;
38              
39             __END__