Index: blimp/helium/errors.h |
diff --git a/blimp/helium/errors.h b/blimp/helium/errors.h |
index 687b4b42de1894596e5b54b9320e794c2889d158..1829242ebd69193d2b576cfc88be5304a8f6ebe3 100644 |
--- a/blimp/helium/errors.h |
+++ b/blimp/helium/errors.h |
@@ -5,10 +5,10 @@ |
// This file intentionally does not have header guards, it's included |
// inside a macro to generate enum values. |
-// This file contains the list of Helium error codes. |
- |
-HELIUM_ERROR(INTERNAL_ERROR, 1) |
- |
// The operation could not be performed because the connection to the peer was |
// lost. |
-HELIUM_ERROR(DISCONNECTED, 2) |
+HELIUM_ERROR(DISCONNECTED, 1) |
+ |
+// The remote end provided data which is not compliant with the protocol. |
+HELIUM_ERROR(PROTOCOL_ERROR, 2) |
+ |