0
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-11-11 02:59:41 -05:00
Files
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