about summary refs log tree commit diff stats
path: root/src/xmpp/presence.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-05-05 23:51:49 +0100
committerJames Booth <boothj5@gmail.com>2016-05-05 23:51:49 +0100
commit3bb1f1241050d227932d5153abf49fdce9939efb (patch)
tree9c8f317581a7aac2d7ab914a454eaf80cd21d643 /src/xmpp/presence.c
parentf6fa63b374cdc07084a472a2067546879809ec89 (diff)
downloadprofani-tty-3bb1f1241050d227932d5153abf49fdce9939efb.tar.gz
Add session.c
Diffstat (limited to 'src/xmpp/presence.c')
-rw-r--r--src/xmpp/presence.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/xmpp/presence.c b/src/xmpp/presence.c
index 130a3fe9..a0deb9f0 100644
--- a/src/xmpp/presence.c
+++ b/src/xmpp/presence.c
@@ -55,6 +55,7 @@
 #include "profanity.h"
 #include "ui/ui.h"
 #include "event/server_events.h"
+#include "xmpp/connection.h"
 #include "xmpp/capabilities.h"
 #include "xmpp/session.h"
 #include "xmpp/stanza.h"
@@ -238,7 +239,7 @@ presence_reset_sub_request_search(void)
 void
 presence_send(const resource_presence_t presence_type, const char *const msg, const int idle, char *signed_status)
 {
-    if (jabber_get_connection_status() != JABBER_CONNECTED) {
+    if (connection_get_status() != JABBER_CONNECTED) {
         log_warning("Error setting presence, not connected.");
         return;
     }
@@ -253,7 +254,7 @@ presence_send(const resource_presence_t presence_type, const char *const msg, co
     const int pri = accounts_get_priority_for_presence_type(jabber_get_account_name(), presence_type);
     const char *show = stanza_get_presence_string_from_type(presence_type);
 
-    connection_set_presence_message(msg);
+    connection_set_presence_msg(msg);
     connection_set_priority(pri);
 
     xmpp_stanza_t *presence = stanza_create_presence(ctx);
@@ -332,7 +333,7 @@ presence_join_room(const char *const room, const char *const nick, const char *c
     resource_presence_t presence_type =
         accounts_get_last_presence(jabber_get_account_name());
     const char *show = stanza_get_presence_string_from_type(presence_type);
-    char *status = jabber_get_presence_message();
+    char *status = connection_get_presence_msg();
     int pri = accounts_get_priority_for_presence_type(jabber_get_account_name(),
         presence_type);
 
@@ -359,7 +360,7 @@ presence_change_room_nick(const char *const room, const char *const nick)
     resource_presence_t presence_type =
         accounts_get_last_presence(jabber_get_account_name());
     const char *show = stanza_get_presence_string_from_type(presence_type);
-    char *status = jabber_get_presence_message();
+    char *status = connection_get_presence_msg();
     int pri = accounts_get_priority_for_presence_type(jabber_get_account_name(),
         presence_type);