summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2016-07-23 07:51:48 -0600
committerGeorge Joseph <gjoseph@digium.com>2016-07-23 09:05:48 -0500
commit8852a4c3db7868c9779a747070499525d2c0e583 (patch)
tree97f4029dfd533b892b214528f33a2cc083580169 /include
parent7cfd9bf1046be712d456b1c21ce858ab12ae9324 (diff)
asterisk.c: Add auto generation and persistence of UUID
Upcoming features will require the generation and persistence of a UUID. Change-Id: I3ec0062427e133217db6ef496a4216f427c3b92d
Diffstat (limited to 'include')
-rw-r--r--include/asterisk.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index ab2a3ddef..e509fbc39 100644
--- a/include/asterisk.h
+++ b/include/asterisk.h
@@ -288,4 +288,11 @@ struct ast_module *AST_MODULE_SELF_SYM(void);
#endif
+/*!
+ * \brief Retrieve the PBX UUID
+ * \param pbx_uuid A buffer of at least AST_UUID_STR_LEN (36 + 1) size to receive the UUID
+ * \param length The buffer length
+ */
+int ast_pbx_uuid_get(char *pbx_uuid, int length);
+
#endif /* _ASTERISK_H */