OLD | NEW |
1 <div id=quic-view-tab-content class=content-box> | 1 <div id=quic-view-tab-content class=content-box> |
2 <ul style='margin-top:0'> | 2 <ul style='margin-top:0'> |
3 <li>QUIC Enabled: <span jscontent="!!quic_enabled"></span></li> | 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.altern
ative_service_probability_threshold || $this.alternate_protocol_probability_thre
shold"></span></li> | |
10 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></spa
n></li> | 4 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></spa
n></li> |
11 <li>Connection options: <span jscontent="connection_options"></span></li> | 5 <li>Connection options: <span jscontent="connection_options"></span></li> |
12 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s
election"></span></li> | 6 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s
election"></span></li> |
13 <li>Load Server Info Timeout Multiplier: <span jscontent="$this.load_server_
info_timeout_srtt_multiplier"></span></li> | 7 <li>Load Server Info Timeout Multiplier: <span jscontent="$this.load_server_
info_timeout_srtt_multiplier"></span></li> |
14 <li>Enable Connection Racing: <span jscontent="!!enable_connection_racing"><
/span></li> | 8 <li>Enable Connection Racing: <span jscontent="!!enable_connection_racing"><
/span></li> |
15 <li>Disable Disk Cache: <span jscontent="!!disable_disk_cache"></span></li> | 9 <li>Disable Disk Cache: <span jscontent="!!disable_disk_cache"></span></li> |
16 <li>Prefer AES: <span jscontent="!!prefer_aes"></span></li> | 10 <li>Prefer AES: <span jscontent="!!prefer_aes"></span></li> |
17 <li>Maximum Number Of Lossy Connections: <span jscontent="$this.max_number_o
f_lossy_connections"></span></li> | 11 <li>Maximum Number Of Lossy Connections: <span jscontent="$this.max_number_o
f_lossy_connections"></span></li> |
18 <li>Packet Loss Threshold: <span jscontent="$this.packet_loss_threshold"></s
pan></li> | 12 <li>Packet Loss Threshold: <span jscontent="$this.packet_loss_threshold"></s
pan></li> |
19 <li>Delay TCP Race: <span jscontent="!!delay_tcp_race"></span></li> | 13 <li>Delay TCP Race: <span jscontent="!!delay_tcp_race"></span></li> |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 <td jscontent="packets_sent"></td> | 53 <td jscontent="packets_sent"></td> |
60 <td jscontent="packets_lost"></td> | 54 <td jscontent="packets_lost"></td> |
61 <td jscontent="packets_received"></td> | 55 <td jscontent="packets_received"></td> |
62 <td jscontent="connected"></td> | 56 <td jscontent="connected"></td> |
63 </tr> | 57 </tr> |
64 </tbody> | 58 </tbody> |
65 </table> | 59 </table> |
66 </p> | 60 </p> |
67 </div> | 61 </div> |
68 </div> | 62 </div> |
OLD | NEW |