about summary refs log tree commit diff stats
path: root/jabber.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-05-27 19:53:16 +0100
committerJames Booth <boothj5@gmail.com>2012-05-27 19:53:16 +0100
commitf5eab875884feda2b1e40e0dcd76150ca1b0763f (patch)
treea6d4ea12830f68f1ab99efabae35d7d20fb60247 /jabber.h
parent11ce116a850cd22bea991496a418eef8100717cb (diff)
downloadprofani-tty-f5eab875884feda2b1e40e0dcd76150ca1b0763f.tar.gz
Added _cmd_away
Not yet sending message to server
Diffstat (limited to 'jabber.h')
-rw-r--r--jabber.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/jabber.h b/jabber.h
index 51d0cada..fc7766d2 100644
--- a/jabber.h
+++ b/jabber.h
@@ -38,6 +38,7 @@ typedef enum {
 
 void jabber_init(const int disable_tls);
 jabber_conn_status_t jabber_connection_status(void);
+jabber_presence_t jabber_presence_status(void);
 jabber_conn_status_t jabber_connect(const char * const user, 
     const char * const passwd);
 void jabber_disconnect(void);
@@ -45,5 +46,6 @@ void jabber_roster_request(void);
 void jabber_process_events(void);
 void jabber_send(const char * const msg, const char * const recipient);
 const char * jabber_get_jid(void);
+void jabber_update_presence(jabber_presence_t status);
 
 #endif