1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 21:55:24 +00:00
profanity/jabber.h
2012-02-17 00:42:41 +00:00

16 lines
334 B
C

#ifndef JABBER_H
#define JABBER_H
#define CONNECTING 0
#define CONNECTED 1
#define DISCONNECTED 2
int jabber_connection_status(void);
int jabber_connect(char *user, char *passwd);
void jabber_disconnect(void);
void jabber_roster_request(void);
void jabber_process_events(void);
void jabber_send(char *msg, char *recipient);
#endif