7a0e0d097e9b51fd27f9e11e4e6953e10e1fad9b
[cascardo/chat.git] / xmpp.h
1 /*
2  *  Copyright (C) 2008  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19
20 #ifndef HC_XMPP_H
21 #define HC_XMPP_H
22
23 #include <iksemel.h>
24
25 enum
26 {
27   HC_XMPP_NONE,
28   HC_XMPP_AUTHENTICATED,
29   HC_XMPP_BOUND
30 };
31
32 typedef struct _hc_xmpp_t hc_xmpp_t;
33
34 #define HC_XMPP_NS_TLS "urn:ietf:params:xml:ns:xmpp-tls"
35 #define HC_XMPP_NS_SASL "urn:ietf:params:xml:ns:xmpp-sasl"
36
37 hc_xmpp_t * hc_xmpp_new (iksStreamHook *, char *, char *, char *);
38 int hc_xmpp_is_tls_supported (hc_xmpp_t *);
39 int hc_xmpp_is_tls_required (hc_xmpp_t *);
40 int hc_xmpp_is_tls_optional (hc_xmpp_t *);
41 int hc_xmpp_is_tls_enabled (hc_xmpp_t *);
42 int hc_xmpp_is_sasl_supported (hc_xmpp_t *);
43 int hc_xmpp_is_sasl_required (hc_xmpp_t *);
44 int hc_xmpp_is_sasl_optional (hc_xmpp_t *);
45 int hc_xmpp_is_sasl_enabled (hc_xmpp_t *);
46 char *hc_xmpp_server (hc_xmpp_t *);
47 void hc_xmpp_send_buffer (hc_xmpp_t *, char *, size_t);
48 void hc_xmpp_send_iks (hc_xmpp_t *, iks *);
49 void hc_xmpp_read_and_parse (hc_xmpp_t *);
50 void hc_xmpp_features (hc_xmpp_t *, iks *);
51 int hc_xmpp_status (hc_xmpp_t *);
52
53 #endif