about summary refs log tree commit diff stats
path: root/src/stanza.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stanza.h')
-rw-r--r--src/stanza.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/stanza.h b/src/stanza.h
index 18332364..b279b52a 100644
--- a/src/stanza.h
+++ b/src/stanza.h
@@ -75,14 +75,13 @@ xmpp_stanza_t* stanza_create_message(xmpp_ctx_t *ctx,
     const char * const recipient, const char * const type,
     const char * const message, const char * const state);
 
-xmpp_stanza_t* stanza_create_room_presence(xmpp_ctx_t *ctx,
+xmpp_stanza_t* stanza_create_room_join_presence(xmpp_ctx_t *ctx,
     const char * const room, const char * const nick);
 
-xmpp_stanza_t* stanza_create_room_leave(xmpp_ctx_t *ctx,
+xmpp_stanza_t* stanza_create_room_leave_presence(xmpp_ctx_t *ctx,
     const char * const room, const char * const nick);
 
-xmpp_stanza_t *
-stanza_create_presence(xmpp_ctx_t *ctx, const char * const show,
+xmpp_stanza_t * stanza_create_presence(xmpp_ctx_t *ctx, const char * const show,
     const char * const status);
 
 #endif