2012-02-20 15:07:38 -05:00
|
|
|
/*
|
|
|
|
* jabber.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 James Booth <boothj5@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Profanity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-02-05 18:29:09 -05:00
|
|
|
#ifndef JABBER_H
|
|
|
|
#define JABBER_H
|
|
|
|
|
2012-02-26 12:18:03 -05:00
|
|
|
typedef enum {
|
|
|
|
JABBER_STARTED,
|
|
|
|
JABBER_CONNECTING,
|
|
|
|
JABBER_CONNECTED,
|
|
|
|
JABBER_DISCONNECTED
|
|
|
|
} jabber_status_t;
|
2012-02-16 19:42:41 -05:00
|
|
|
|
2012-02-26 18:33:14 -05:00
|
|
|
void jabber_init(int disable_tls);
|
2012-02-26 12:18:03 -05:00
|
|
|
jabber_status_t jabber_connection_status(void);
|
|
|
|
jabber_status_t 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
|