1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-08 19:34:14 -04:00
profanity/jabber.h
2012-02-20 01:42:29 +00:00

17 lines
352 B
C

#ifndef JABBER_H
#define JABBER_H
#define STARTED 0
#define CONNECTING 1
#define CONNECTED 2
#define DISCONNECTED 3
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