aboutsummaryrefslogtreecommitdiff
path: root/include/olm/olm.hh
diff options
context:
space:
mode:
Diffstat (limited to 'include/olm/olm.hh')
-rw-r--r--include/olm/olm.hh11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/olm/olm.hh b/include/olm/olm.hh
index 34d84fd..ceb8be9 100644
--- a/include/olm/olm.hh
+++ b/include/olm/olm.hh
@@ -1,4 +1,4 @@
-/* Copyright 2015 OpenMarket Ltd
+/* Copyright 2015, 2016 OpenMarket Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -51,7 +51,7 @@ OlmSession * olm_session(
);
/** Initialise a utility object using the supplied memory
- * The supplied memory must be at least olm_session_size() bytes */
+ * The supplied memory must be at least olm_utility_size() bytes */
OlmUtility * olm_utility(
void * memory
);
@@ -415,6 +415,13 @@ size_t olm_ed25519_verify(
void * signature, size_t signature_length
);
+/**
+ * Set the log level. By default, 1, which logs only FATAL messages.
+ */
+void olm_set_log_level(
+ unsigned int level
+);
+
#ifdef __cplusplus
}
#endif