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>
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>
22 <table class=
"styled-table">
29 <th>Connection UID
</th>
30 <th>Active stream count
</th>
31 <th>Active streams
</th>
32 <th>Total stream count
</th>
35 <th>Packets Received
</th>
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>