1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-08 19:34:14 -04:00
profanity/jabber.h

16 lines
334 B
C
Raw Normal View History

2012-02-05 18:29:09 -05:00
#ifndef JABBER_H
#define JABBER_H
2012-02-16 19:42:41 -05:00
#define CONNECTING 0
#define CONNECTED 1
#define DISCONNECTED 2
int jabber_connection_status(void);
int jabber_connect(char *user, char *passwd);
2012-02-06 19:08:59 -05:00
void jabber_disconnect(void);
2012-02-08 21:47:25 -05:00
void jabber_roster_request(void);
2012-02-06 19:08:59 -05:00
void jabber_process_events(void);
2012-02-08 17:46:35 -05:00
void jabber_send(char *msg, char *recipient);
2012-02-05 18:38:35 -05:00
2012-02-05 18:29:09 -05:00
#endif