File Coverage

blib/lib/Protocol/SPDY/Server.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::Server;
2             {
3             $Protocol::SPDY::Server::VERSION = '1.000';
4             }
5 3     3   19 use strict;
  3         7  
  3         116  
6 3     3   19 use warnings;
  3         6  
  3         103  
7 3     3   17 use parent qw(Protocol::SPDY::Base);
  3         8  
  3         21  
8              
9             =head1 NAME
10              
11             Protocol::SPDY::Server - server-side handling for SPDY sessions
12              
13             =head1 VERSION
14              
15             version 1.000
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             Server streams always start at 2.
34              
35             =cut
36              
37 1     1 1 5 sub initial_stream_id { 2 }
38              
39             1;
40              
41             __END__