Index: net/quic/quic_protocol.h |
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h |
index d7325c55a0f8e0a23f2d12e30cabfa2da7bc02c5..8ac3d0518b352f3959a9146d3bb9abf93ce65584 100644 |
--- a/net/quic/quic_protocol.h |
+++ b/net/quic/quic_protocol.h |
@@ -682,8 +682,13 @@ enum QuicErrorCode { |
// tampered with. |
QUIC_VERSION_NEGOTIATION_MISMATCH = 55, |
+ // Multipath errors. |
// Multipath is not enabled, but a packet with multipath flag on is received. |
QUIC_BAD_MULTIPATH_FLAG = 79, |
+ // A path is supposed to exist but does not. |
+ QUIC_MULTIPATH_PATH_DOES_NOT_EXIST = 91, |
+ // A path is supposed to be active but is not. |
+ QUIC_MULTIPATH_PATH_NOT_ACTIVE = 92, |
// IP address changed causing connection close. |
QUIC_IP_ADDRESS_CHANGED = 80, |
@@ -700,7 +705,7 @@ enum QuicErrorCode { |
QUIC_CONNECTION_MIGRATION_NON_MIGRATABLE_STREAM = 84, |
// No error. Used as bound while iterating. |
- QUIC_LAST_ERROR = 91, |
+ QUIC_LAST_ERROR = 93, |
}; |
typedef char DiversificationNonce[32]; |