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

Unified Diff: tools/metrics/histograms/histograms.xml

Side-by-side diff isn't available for this file because of its large size.
Issue 171453002: Describe the histogram Net.QuicSession.PublicResetAddressMismatch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fully spell out IPv4 and IPv6 Created 6 years, 10 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:
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
===================================================================
--- tools/metrics/histograms/histograms.xml (revision 251851)
+++ tools/metrics/histograms/histograms.xml (working copy)
@@ -9810,6 +9810,16 @@
</summary>
</histogram>
+<histogram name="Net.QuicSession.PublicResetAddressMismatch"
+ enum="QuicAddressMismatch">
+ <summary>
+ When a public reset packet is received, whether the client IP address and
+ port number in it differ from the client IP address and port number in the
+ ServerHello handshake message. In the comparison, the first address is the
+ one in ServerHello and the second address is the one in public reset.
+ </summary>
+</histogram>
+
<histogram name="Net.QuicSession.QuicVersion">
<summary>Version of the QUIC protocol used for this connection.</summary>
</histogram>
@@ -30650,6 +30660,17 @@
<int value="22" label="DOMAIN_NUM_EVENTS"/>
</enum>
+<enum name="QuicAddressMismatch" type="int">
+ <int value="0" label="Address mismatch: IPv4 IPv4"/>
+ <int value="1" label="Address mismatch: IPv6 IPv6"/>
+ <int value="2" label="Address mismatch: IPv4 IPv6"/>
+ <int value="3" label="Address mismatch: IPv6 IPv4"/>
+ <int value="4" label="Port mismatch: IPv4 IPv4"/>
+ <int value="5" label="Port mismatch: IPv6 IPv6"/>
+ <int value="6" label="Address and port match: IPv4 IPv4"/>
+ <int value="7" label="Address and port match: IPv6 IPv6"/>
+</enum>
+
<enum name="QuicErrorCodes" type="int">
<int value="0" label="NO_ERROR"/>
<int value="1" label="INTERNAL_ERROR"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698