• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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    <li>Alternate Protocol Probability Threshold: <span jscontent="alternate_protocol_probability_threshold"></span></li>
5    <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></span></li>
6    <li>QUIC connection options: <span jscontent="connection_options"></span></li>
7    <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_selection"></span></li>
8  </ul>
9
10  <h4>QUIC sessions</h4>
11    <!-- Only one of these two are shown -->
12    <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div>
13    <div jsdisplay="$this.sessions && sessions.length > 0">
14      <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions</a>
15      <p>
16        <table class="styled-table">
17          <thead>
18            <tr>
19              <th>Host</th>
20              <th>Secure</th>
21              <th>Version</th>
22              <th>Peer address</th>
23              <th>Connection UID</th>
24              <th>Active stream count</th>
25              <th>Active streams</th>
26              <th>Total stream count</th>
27              <th>Packets Sent</th>
28              <th>Packets Lost</th>
29              <th>Packets Received</th>
30              <th>Connected</th>
31            </tr>
32          </thead>
33          <tbody>
34            <tr jsselect="sessions">
35              <td jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></td>
36              <td jscontent="!!secure"></td>
37              <td jscontent="version"></td>
38              <td jscontent="peer_address"></td>
39              <td><a jsvalues=".href: '#events&q=type:QUIC_SESSION%20' + connection_id" jscontent="connection_id"></a></td>
40              <td jscontent="open_streams"></td>
41              <td jscontent="$this.active_streams && $this.active_streams.length > 0 ? $this.active_streams.join(', ') : 'None'"></td>
42              <td jscontent="total_streams"></td>
43              <td jscontent="packets_sent"></td>
44              <td jscontent="packets_lost"></td>
45              <td jscontent="packets_received"></td>
46              <td jscontent="connected"></td>
47            </tr>
48          </tbody>
49        </table>
50      </p>
51    </div>
52</div>
53