Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / quic_view.html
blob2b3f8000d9fd30802e7d1daeac27001faab43e67
1 <div id=quic-view-tab-content class=content-box>
2 <ul style='margin-top:0'>
3 <li>QUIC Enabled: <span jscontent="!!quic_enabled"></span></li>
4 <!-- "alternative_service_probability_threshold" is used since release 44,
5 see https://crrev.com/1091283007.
6 "alternate_protocol_probability_threshold" is here to support importing
7 netlog json files from earlier browsers.
8 TODO(bnc): Deprecate around 2016 January. --!>
9 <li>Alternative Service Probability Threshold: <span jscontent="$this.alternative_service_probability_threshold || $this.alternate_protocol_probability_threshold"></span></li>
10 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></span></li>
11 <li>QUIC connection options: <span jscontent="connection_options"></span></li>
12 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_selection"></span></li>
13 <li jsdisplay="$this.disabled_reason && disabled_reason.length > 0">QUIC dynamically disabled: <span jscontent="disabled_reason"></span></li>
14 </ul>
16 <h4>QUIC sessions</h4>
17 <!-- Only one of these two are shown -->
18 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div>
19 <div jsdisplay="$this.sessions && sessions.length > 0">
20 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions</a>
21 <p>
22 <table class="styled-table">
23 <thead>
24 <tr>
25 <th>Host</th>
26 <th>Secure</th>
27 <th>Version</th>
28 <th>Peer address</th>
29 <th>Connection UID</th>
30 <th>Active stream count</th>
31 <th>Active streams</th>
32 <th>Total stream count</th>
33 <th>Packets Sent</th>
34 <th>Packets Lost</th>
35 <th>Packets Received</th>
36 <th>Connected</th>
37 </tr>
38 </thead>
39 <tbody>
40 <tr jsselect="sessions">
41 <td jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></td>
42 <td jscontent="!!secure"></td>
43 <td jscontent="version"></td>
44 <td jscontent="peer_address"></td>
45 <td><a jsvalues=".href: '#events&q=type:QUIC_SESSION%20' + connection_id" jscontent="connection_id"></a></td>
46 <td jscontent="open_streams"></td>
47 <td jscontent="$this.active_streams && $this.active_streams.length > 0 ? $this.active_streams.join(', ') : 'None'"></td>
48 <td jscontent="total_streams"></td>
49 <td jscontent="packets_sent"></td>
50 <td jscontent="packets_lost"></td>
51 <td jscontent="packets_received"></td>
52 <td jscontent="connected"></td>
53 </tr>
54 </tbody>
55 </table>
56 </p>
57 </div>
58 </div>