diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-05-19 07:53:07 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-05-24 13:40:21 +0100 |
commit | fc4756ddf17f536912a89a4ffcf90a309c236ced (patch) | |
tree | 856dd59a367aa6b81cdb59d681777533a32bb9ca /include/olm/error.h | |
parent | a073d12d8367d27db97751d46b766e8480fd39e4 (diff) |
Fix up some names, and protobuf tags
Make names (of session_key and message_index) more consistent.
Use our own protobuf tags rather than trying to piggyback on the one-to-one
structure.
Diffstat (limited to 'include/olm/error.h')
-rw-r--r-- | include/olm/error.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/olm/error.h b/include/olm/error.h index 3f74992..98d2cf5 100644 --- a/include/olm/error.h +++ b/include/olm/error.h @@ -32,8 +32,12 @@ enum OlmErrorCode { OLM_UNKNOWN_PICKLE_VERSION = 9, /*!< The pickled object is too new */ OLM_CORRUPTED_PICKLE = 10, /*!< The pickled object couldn't be decoded */ - OLM_BAD_RATCHET_KEY = 11, - OLM_BAD_CHAIN_INDEX = 12, + OLM_BAD_SESSION_KEY = 11, /*!< Attempt to initialise an inbound group + session from an invalid session key */ + OLM_UNKNOWN_MESSAGE_INDEX = 12, /*!< Attempt to decode a message whose + * index is earlier than our earliest + * known session key. + */ /* remember to update the list of string constants in error.c when updating * this list. */ |