Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(536)

Side by Side Diff: netlog_viewer/quic_view.html

Issue 2178423002: Bring the gh-pages branch up to date with the master branch (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « netlog_viewer/proxy_view.js ('k') | netlog_viewer/quic_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id=quic-view-tab-content class=content-box> 1 <div id=quic-view-tab-content class=content-box>
2 <h4>QUIC status</h4>
2 <ul style='margin-top:0'> 3 <ul style='margin-top:0'>
3 <li>QUIC Enabled: <span jscontent="!!quic_enabled"></span></li> 4 <li>QUIC Enabled: <span id=quic-view-quic-enabled></span></li>
4 <li>Origins To Force QUIC On: <span jscontent="origins_to_force_quic_on"></s pan></li> 5 <li>Origins To Force QUIC On: <span id=quic-view-origins-to-force-quic-on></ span></li>
5 <li>Connection options: <span jscontent="connection_options"></span></li> 6 <li>Connection options: <span id=quic-view-connection-options></span></li>
6 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s election"></span></li> 7 <li>Consistent Port Selection Enabled: <span id=quic-view-port-selection-ena bled></span></li>
7 <li>Load Server Info Timeout Multiplier: <span jscontent="$this.load_server_ info_timeout_srtt_multiplier"></span></li> 8 <li>Load Server Info Timeout Multiplier: <span id=quic-view-server-info-time out-mult></span></li>
8 <li>Enable Connection Racing: <span jscontent="!!enable_connection_racing">< /span></li> 9 <li>Enable Connection Racing: <span id=quic-view-enable-connection-racing></ span></li>
9 <li>Disable Disk Cache: <span jscontent="!!disable_disk_cache"></span></li> 10 <li>Disable Disk Cache: <span id=quic-view-disable-disk-cache></span></li>
10 <li>Prefer AES: <span jscontent="!!prefer_aes"></span></li> 11 <li>Prefer AES: <span id=quic-view-prefer-aes></span></li>
11 <li>Maximum Number Of Lossy Connections: <span jscontent="$this.max_number_o f_lossy_connections"></span></li> 12 <li>Maximum Number Of Lossy Connections: <span id=quic-view-max-num-lossy-co nnections></span></li>
12 <li>Packet Loss Threshold: <span jscontent="$this.packet_loss_threshold"></s pan></li> 13 <li>Packet Loss Threshold: <span id=quic-view-packet-loss-threshold></span>< /li>
13 <li>Delay TCP Race: <span jscontent="!!delay_tcp_race"></span></li> 14 <li>Delay TCP Race: <span id=quic-view-delay-tcp-race></span></li>
14 <li>Store Server Configs In Properties File: <span jscontent="!!store_server _configs_in_properties"></span></li> 15 <li>Store Server Configs In Properties File: <span id=quic-view-configs-in-f ile></span></li>
15 <li>Idle Connection Timeout In Seconds: <span jscontent="$this.idle_connecti on_timeout_seconds"></span></li> 16 <li>Idle Connection Timeout In Seconds: <span id=quic-view-connection-timeou t-in-secs></span></li>
16 <li>Disable PreConnect If 0RTT: <span jscontent="$this.disable_preconnect_if _0rtt"></span></li> 17 <li>Disable PreConnect If 0RTT: <span id=quic-view-disable-preconnect-if-ort t></span></li>
17 <li>Disable QUIC On Timeout With Open Streams: <span jscontent="$this.disabl e_quic_on_timeout_with_open_streams"></span></li> 18 <li>Disable QUIC On Timeout With Open Streams: <span id=quic-view-disable-qu ic-on-timeout-with-open-streams></span></li>
18 <li jsdisplay="$this.disabled_reason && disabled_reason.length > 0">QUIC dyn amically disabled: <span jscontent="disabled_reason"></span></li> 19 <li id=quic-view-dynamically-disabled-bullet-point><span id=quic-view-dynami cally-disabled-span></span></li>
19 </ul> 20 </ul>
20 21
21 <h4>QUIC sessions</h4> 22 <h4>QUIC sessions</h4>
22 <!-- Only one of these two are shown --> 23 <!-- Only one of these two are shown -->
23 <div jsdisplay="!($this.sessions && sessions.length > 0)">None</div> 24 <div id=quic-view-session-info-no-content>None</div>
24 <div jsdisplay="$this.sessions && sessions.length > 0"> 25 <div id=quic-view-session-info-content>
25 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a> 26 <a href="#events&q=type:QUIC_SESSION%20is:active">View live QUIC sessions< /a>
26 <p> 27 <p>
27 <table class="styled-table"> 28 <table class="styled-table">
28 <thead> 29 <thead>
29 <tr> 30 <tr>
30 <th>Host</th> 31 <th>Host</th>
31 <th>Secure</th> 32 <th>Secure</th>
32 <th>Version</th> 33 <th>Version</th>
33 <th>Peer address</th> 34 <th>Peer address</th>
34 <th>Connection UID</th> 35 <th>Connection UID</th>
35 <th>Active stream count</th> 36 <th>Active stream count</th>
36 <th>Active streams</th> 37 <th>Active streams</th>
37 <th>Total stream count</th> 38 <th>Total stream count</th>
38 <th>Packets Sent</th> 39 <th>Packets Sent</th>
39 <th>Packets Lost</th> 40 <th>Packets Lost</th>
40 <th>Packets Received</th> 41 <th>Packets Received</th>
41 <th>Connected</th> 42 <th>Connected</th>
42 </tr> 43 </tr>
43 </thead> 44 </thead>
44 <tbody> 45 <tbody id=quic-view-session-info-tbody>
45 <tr jsselect="sessions">
46 <td jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></td>
47 <td jscontent="!!secure"></td>
48 <td jscontent="version"></td>
49 <td jscontent="peer_address"></td>
50 <td><a jsvalues=".href: '#events&q=type:QUIC_SESSION%20' + connect ion_id" jscontent="connection_id"></a></td>
51 <td jscontent="open_streams"></td>
52 <td jscontent="$this.active_streams && $this.active_streams.length > 0 ? $this.active_streams.join(', ') : 'None'"></td>
53 <td jscontent="total_streams"></td>
54 <td jscontent="packets_sent"></td>
55 <td jscontent="packets_lost"></td>
56 <td jscontent="packets_received"></td>
57 <td jscontent="connected"></td>
58 </tr>
59 </tbody> 46 </tbody>
60 </table> 47 </table>
61 </p> 48 </p>
62 </div> 49 </div>
63 </div> 50 </div>
64 51
OLDNEW
« no previous file with comments | « netlog_viewer/proxy_view.js ('k') | netlog_viewer/quic_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698