summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/net_internals/spdy_view.html
blob: 6ff166911a7bc5bb4cee764dd7bab7e99da68f51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<div id=spdy-view-tab-content class=content-box>
  <ul id=spdy-view-status style='margin-top:0'>
    <li>SPDY Enabled: <span jscontent="spdy_enabled"></span></li>
    <li>Use Alternate Protocol: <span jscontent="use_alternate_protocols"></span></li>
    <li>Force SPDY Always: <span jscontent="force_spdy_always"></span></li>
    <li>Force SPDY Over SSL: <span jscontent="force_spdy_over_ssl"></span></li>
    <li>Next Protocols: <span jscontent="next_protos"></span></li>
  </ul>

  <h4>SPDY sessions</h4>
  <div id=spdy-view-session-info>
    <!-- Only one of these two are shown -->
    <div jsdisplay="spdySessionInfo.length == 0">None</div>
    <div jsdisplay="spdySessionInfo.length != 0">
      <a href="#events&q=type:SPDY_SESSION%20is:active">View live SPDY sessions</a>
      <p>
        <table class="styled-table">
          <thead>
            <tr>
              <th>Host</th>
              <th>Proxy</th>
              <th>ID</th>
              <th>Protocol Negotiated</th>
              <th>Active streams</th>
              <th>Unclaimed pushed</th>
              <th>Max</th>
              <th>Initiated</th>
              <th>Pushed</th>
              <th>Pushed and claimed</th>
              <th>Abandoned</th>
              <th>Received frames</th>
              <th>Secure</th>
              <th>Sent settings</th>
              <th>Received settings</th>
              <th>Send window</th>
              <th>Receive window</th>
              <th>Unacked received data</th>
              <th>Error</th>
            </tr>
          </thead>
          <tbody>
            <tr jsselect="spdySessionInfo">
              <td><span jscontent="host_port_pair"></span>
                <span jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></span>
              </td>
              <td jscontent="proxy"></td>
              <td><a jsvalues=".href: '#events&q=id:' + source_id" jscontent="source_id"></a></td>
              <td jscontent="protocol_negotiated"></td>
              <td jscontent="active_streams"></td>
              <td jscontent="unclaimed_pushed_streams"></td>
              <td jscontent="max_concurrent_streams"></td>
              <td jscontent="streams_initiated_count"></td>
              <td jscontent="streams_pushed_count"></td>
              <td jscontent="streams_pushed_and_claimed_count"></td>
              <td jscontent="streams_abandoned_count"></td>
              <td jscontent="frames_received"></td>
              <td jscontent="is_secure"></td>
              <td jscontent="sent_settings"></td>
              <td jscontent="received_settings"></td>
              <td jscontent="send_window_size"></td>
              <td jscontent="recv_window_size"></td>
              <td jscontent="unacked_recv_window_bytes"></td>
              <td jscontent="error"></td>
            </tr>
          </tbody>
        </table>
      </p>
    </div>
  </div>

  <h4>Alternate Protocol Mappings</h4>
  <div id=spdy-view-alternate-protocol-mappings>
    <div jsdisplay="spdyAlternateProtocolMappings.length == 0">None</div>
    <div jsdisplay="spdyAlternateProtocolMappings.length != 0">
      <table class="styled-table">
        <thead>
          <tr>
            <th>Host</th>
            <th>Alternate Protocol</th>
          </tr>
        </thead>
        <tbody>
          <tr jsselect="spdyAlternateProtocolMappings">
            <td jscontent="host_port_pair"></td>
            <td jscontent="alternate_protocol"></td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
</div>