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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 342863005: QUIC - Record reject reasons for CHLO message. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed lint errors Created 6 years, 6 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
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 6901d048825a09c0be2c135a4b8d57ec8952c673..b6148a481c75f8c5b7979fe60e8c4b2588c0f392 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -14491,6 +14491,13 @@ Therefore, the affected-histogram name has to have at least one dot in it.
</summary>
</histogram>
+<histogram name="Net.QuicClientHelloRejectReasons" enum="QuicRejectReasons">
Ryan Hamilton 2014/06/21 03:02:29 I don't think that the units are correct here, sin
ramant (doing other things) 2014/06/23 17:27:35 Correct. jar suggested we could add the other enum
+ <owner>rtenneti@chromium.org</owner>
+ <summary>
+ The reject reasons for QUIC's CHLO (client hello) message from server.
+ </summary>
+</histogram>
+
<histogram name="Net.QuicEphemeralPortsSuggested">
<owner>rch@chromium.org</owner>
<summary>The number of ports suggested per server.</summary>
@@ -43207,6 +43214,24 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<int value="11" label="ppsm"/>
</enum>
+<enum name="QuicRejectReasons" type="int">
+ <int value="0" label="HANDSHAKE_OK"/>
+ <int value="32" label="CLIENT_NONCE_UNKNOWN_FAILURE"/>
+ <int value="64" label="CLIENT_NONCE_INVALID_FAILURE"/>
+ <int value="1024" label="SERVER_NONCE_INVALID_FAILURE"/>
+ <int value="2048" label="SERVER_NONCE_DECRYPTION_FAILURE"/>
+ <int value="3072" label="SERVER_NONCE_NOT_UNIQUE_FAILURE"/>
+ <int value="32768" label="SERVER_CONFIG_INCHOATE_HELLO_FAILURE"/>
+ <int value="65536" label="SERVER_CONFIG_UNKNOWN_CONFIG_FAILURE"/>
+ <int value="1048576" label="SOURCE_ADDRESS_TOKEN_INVALID_FAILURE"/>
+ <int value="2097152" label="SOURCE_ADDRESS_TOKEN_DECRYPTION_FAILURE"/>
+ <int value="3145728" label="SOURCE_ADDRESS_TOKEN_PARSE_FAILURE"/>
+ <int value="4194304"
+ label="SOURCE_ADDRESS_TOKEN_DIFFERENT_IP_ADDRESS_FAILURE"/>
+ <int value="5242880" label="SOURCE_ADDRESS_TOKEN_CLOCK_SKEW_FAILURE"/>
+ <int value="6291456" label="SOURCE_ADDRESS_TOKEN_EXPIRED_FAILURE"/>
+</enum>
+
<enum name="QuicRstStreamErrorCodes" type="int">
<int value="0" label="NO_ERROR"/>
<int value="1" label="ERROR_PROCESSING_STREAM"/>

Powered by Google App Engine
This is Rietveld 408576698