• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<div id=spdy-view-tab-content class=content-box>
2  <ul id=spdy-view-status style='margin-top:0'>
3    <li>SPDY Enabled: <span jscontent="spdy_enabled"></span></li>
4    <li>Use Alternate Protocol: <span jscontent="use_alternate_protocols"></span></li>
5    <li>Force SPDY Always: <span jscontent="force_spdy_always"></span></li>
6    <li>Force SPDY Over SSL: <span jscontent="force_spdy_over_ssl"></span></li>
7    <li>Next Protocols: <span jscontent="next_protos"></span></li>
8  </ul>
9
10  <h4>SPDY sessions</h4>
11  <div id=spdy-view-session-info>
12    <!-- Only one of these two are shown -->
13    <div jsdisplay="spdySessionInfo.length == 0">None</div>
14    <div jsdisplay="spdySessionInfo.length != 0">
15      <a href="#events&q=type:SPDY_SESSION%20is:active">View live SPDY sessions</a>
16      <p>
17        <table class="styled-table">
18          <thead>
19            <tr>
20              <th>Host</th>
21              <th>Proxy</th>
22              <th>ID</th>
23              <th>Protocol Negotiated</th>
24              <th>Active streams</th>
25              <th>Unclaimed pushed</th>
26              <th>Max</th>
27              <th>Initiated</th>
28              <th>Pushed</th>
29              <th>Pushed and claimed</th>
30              <th>Abandoned</th>
31              <th>Received frames</th>
32              <th>Secure</th>
33              <th>Sent settings</th>
34              <th>Received settings</th>
35              <th>Send window</th>
36              <th>Receive window</th>
37              <th>Unacked received data</th>
38              <th>Error</th>
39            </tr>
40          </thead>
41          <tbody>
42            <tr jsselect="spdySessionInfo">
43              <td><span jscontent="host_port_pair"></span>
44                <span jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></span>
45              </td>
46              <td jscontent="proxy"></td>
47              <td><a jsvalues=".href: '#events&q=id:' + source_id" jscontent="source_id"></a></td>
48              <td jscontent="protocol_negotiated"></td>
49              <td jscontent="active_streams"></td>
50              <td jscontent="unclaimed_pushed_streams"></td>
51              <td jscontent="max_concurrent_streams"></td>
52              <td jscontent="streams_initiated_count"></td>
53              <td jscontent="streams_pushed_count"></td>
54              <td jscontent="streams_pushed_and_claimed_count"></td>
55              <td jscontent="streams_abandoned_count"></td>
56              <td jscontent="frames_received"></td>
57              <td jscontent="is_secure"></td>
58              <td jscontent="sent_settings"></td>
59              <td jscontent="received_settings"></td>
60              <td jscontent="send_window_size"></td>
61              <td jscontent="recv_window_size"></td>
62              <td jscontent="unacked_recv_window_bytes"></td>
63              <td jscontent="error"></td>
64            </tr>
65          </tbody>
66        </table>
67      </p>
68    </div>
69  </div>
70
71  <h4>Alternate Protocol Mappings</h4>
72  <div id=spdy-view-alternate-protocol-mappings>
73    <div jsdisplay="spdyAlternateProtocolMappings.length == 0">None</div>
74    <div jsdisplay="spdyAlternateProtocolMappings.length != 0">
75      <table class="styled-table">
76        <thead>
77          <tr>
78            <th>Host</th>
79            <th>Alternate Protocol</th>
80          </tr>
81        </thead>
82        <tbody>
83          <tr jsselect="spdyAlternateProtocolMappings">
84            <td jscontent="host_port_pair"></td>
85            <td jscontent="alternate_protocol"></td>
86          </tr>
87        </tbody>
88      </table>
89    </div>
90  </div>
91</div>
92