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             $Protocol::SPDY::Server::VERSION = '1.001';
3 3     3   12 use strict;
  3         5  
  3         110  
4 3     3   18 use warnings;
  3         5  
  3         98  
5 3     3   14 use parent qw(Protocol::SPDY::Base);
  3         3  
  3         24  
6              
7             =head1 NAME
8              
9             Protocol::SPDY::Server - server-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             Server streams always start at 2.
32              
33             =cut
34              
35 1     1 1 3 sub initial_stream_id { 2 }
36              
37             1;
38              
39             __END__