about summary refs log tree commit diff stats
path: root/src/jabber.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-10-02 21:37:55 +0100
committerJames Booth <boothj5@gmail.com>2012-10-02 21:37:55 +0100
commitee8407f4a407eb7c10857a1d42931bdd014411cd (patch)
tree609bf6ad2551db6095808e8ee8998549bbc4ac75 /src/jabber.h
parentb9ab5d9f33199132cb60c6e92eb83b316390ebcf (diff)
downloadprofani-tty-ee8407f4a407eb7c10857a1d42931bdd014411cd.tar.gz
Tidy up jabber module, removed unused code, made local functions private
Diffstat (limited to 'src/jabber.h')
-rw-r--r--src/jabber.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/jabber.h b/src/jabber.h
index 4a27c55a..7e04d0bb 100644
--- a/src/jabber.h
+++ b/src/jabber.h
@@ -41,15 +41,14 @@ typedef enum {
 } jabber_presence_t;
 
 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);
 gboolean jabber_disconnect(void);
 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, const char * const msg);
+const char * jabber_get_jid(void);
+jabber_conn_status_t jabber_get_connection_status(void);
 
 #endif