diff options
author | David Baker <dave@matrix.org> | 2019-10-01 11:14:16 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2019-10-01 11:14:16 +0100 |
commit | 39a1ee0b18f0fced6d7bc293cc9a46ea70ec9e96 (patch) | |
tree | cbda083a8eb42f57a82d03cea38add6803d20823 /javascript/olm_post.js | |
parent | 3568060570bb06eff022f49ab39cf34e387e382f (diff) |
Add olm_session_describe
As a way to dump the state of an olm session, ie. the chain indicies,
so we can debug why olm sessions break and get out of sync.
Diffstat (limited to 'javascript/olm_post.js')
-rw-r--r-- | javascript/olm_post.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/javascript/olm_post.js b/javascript/olm_post.js index ad058d9..c0498db 100644 --- a/javascript/olm_post.js +++ b/javascript/olm_post.js @@ -459,6 +459,13 @@ Session.prototype['decrypt'] = restore_stack(function( }); +Session.prototype['describe'] = restore_stack(function() { + var description_buf = session_method(Module['_olm_session_describe'])( + this.ptr + ); + return UTF8ToString(description_buf); +}); + function Utility() { var size = Module['_olm_utility_size'](); this.buf = malloc(size); |