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 <li>HTTPS Over QUIC Enabled: <span jscontent="!!quic_enabled_https"></span><
/li> | 4 <li>HTTPS Over QUIC Enabled: <span jscontent="!!quic_enabled_https"></span><
/li> |
5 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></spa
n></li> | 5 <li>Origin To Force QUIC On: <span jscontent="origin_to_force_quic_on"></spa
n></li> |
6 <li>Packet Pacing Enabled: <span jscontent="!!enable_quic_pacing"></span></l
i> | 6 <li>Packet Pacing Enabled: <span jscontent="!!enable_quic_pacing"></span></l
i> |
7 <li>Persist Server Config Information Enabled: <span jscontent="!!enable_qui
c_persist_server_info"></span></li> | 7 <li>Persist Server Config Information Enabled: <span jscontent="!!enable_qui
c_persist_server_info"></span></li> |
8 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s
election"></span></li> | 8 <li>Consistent Port Selection Enabled: <span jscontent="!!enable_quic_port_s
election"></span></li> |
9 </ul> | 9 </ul> |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 <th>Packets Received</th> | 30 <th>Packets Received</th> |
31 <th>Connected</th> | 31 <th>Connected</th> |
32 </tr> | 32 </tr> |
33 </thead> | 33 </thead> |
34 <tbody> | 34 <tbody> |
35 <tr jsselect="sessions"> | 35 <tr jsselect="sessions"> |
36 <td jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></td> | 36 <td jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></td> |
37 <td jscontent="!!secure"></td> | 37 <td jscontent="!!secure"></td> |
38 <td jscontent="version"></td> | 38 <td jscontent="version"></td> |
39 <td jscontent="peer_address"></td> | 39 <td jscontent="peer_address"></td> |
40 <td jscontent="connection_id"></td> | 40 <td><a jsvalues=".href: '#events&q=type:QUIC_SESSION%20' + connect
ion_id" jscontent="connection_id"></a></td> |
41 <td jscontent="open_streams"></td> | 41 <td jscontent="open_streams"></td> |
42 <td jscontent="$this.active_streams && $this.active_streams.length
> 0 ? $this.active_streams.join(', ') : 'None'"></td> | 42 <td jscontent="$this.active_streams && $this.active_streams.length
> 0 ? $this.active_streams.join(', ') : 'None'"></td> |
43 <td jscontent="total_streams"></td> | 43 <td jscontent="total_streams"></td> |
44 <td jscontent="packets_sent"></td> | 44 <td jscontent="packets_sent"></td> |
45 <td jscontent="packets_lost"></td> | 45 <td jscontent="packets_lost"></td> |
46 <td jscontent="packets_received"></td> | 46 <td jscontent="packets_received"></td> |
47 <td jscontent="connected"></td> | 47 <td jscontent="connected"></td> |
48 </tr> | 48 </tr> |
49 </tbody> | 49 </tbody> |
50 </table> | 50 </table> |
51 </p> | 51 </p> |
52 </div> | 52 </div> |
53 </div> | 53 </div> |
OLD | NEW |