summaryrefslogtreecommitdiff
path: root/main/stasis_endpoints.c
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@digium.com>2013-05-15 02:37:22 +0000
committerDavid M. Lee <dlee@digium.com>2013-05-15 02:37:22 +0000
commit9648e258c76a24c5a24e16c634fcda73829e5d30 (patch)
treea0dc5b31ee73a83a7799413929a40436a1526293 /main/stasis_endpoints.c
parente8f4ac6c610265b46014da9259062bb74d3892d1 (diff)
Refactored the rest of the message types to use the STASIS_MESSAGE_TYPE_*
macros. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@388751 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/stasis_endpoints.c')
-rw-r--r--main/stasis_endpoints.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/main/stasis_endpoints.c b/main/stasis_endpoints.c
index 424df66c5..7428e2cf1 100644
--- a/main/stasis_endpoints.c
+++ b/main/stasis_endpoints.c
@@ -35,17 +35,12 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/stasis.h"
#include "asterisk/stasis_endpoints.h"
-static struct stasis_message_type *endpoint_snapshot_type;
+STASIS_MESSAGE_TYPE_DEFN(ast_endpoint_snapshot_type);
static struct stasis_topic *endpoint_topic_all;
static struct stasis_caching_topic *endpoint_topic_all_cached;
-struct stasis_message_type *ast_endpoint_snapshot_type(void)
-{
- return endpoint_snapshot_type;
-}
-
struct stasis_topic *ast_endpoint_topic_all(void)
{
return endpoint_topic_all;
@@ -176,12 +171,7 @@ int ast_endpoint_stasis_init(void)
return -1;
}
- if (!endpoint_snapshot_type) {
- endpoint_snapshot_type = stasis_message_type_create(
- "ast_endpoint_snapshot");
- }
-
- if (!endpoint_snapshot_type) {
+ if (STASIS_MESSAGE_TYPE_INIT(ast_endpoint_snapshot_type) != 0) {
return -1;
}