7014
|
1 /**
|
|
2 * @file jabber.h
|
|
3 *
|
|
4 * gaim
|
|
5 *
|
|
6 * Copyright (C) 2003 Nathan Walp <faceprint@faceprint.com>
|
2086
|
7 *
|
7014
|
8 * This program is free software; you can redistribute it and/or modify
|
|
9 * it under the terms of the GNU General Public License as published by
|
|
10 * the Free Software Foundation; either version 2 of the License, or
|
|
11 * (at your option) any later version.
|
2086
|
12 *
|
7014
|
13 * This program is distributed in the hope that it will be useful,
|
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16 * GNU General Public License for more details.
|
2086
|
17 *
|
7014
|
18 * You should have received a copy of the GNU General Public License
|
|
19 * along with this program; if not, write to the Free Software
|
|
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2086
|
21 */
|
7014
|
22 #ifndef _GAIM_JABBER_H_
|
|
23 #define _GAIM_JABBER_H_
|
2086
|
24
|
7014
|
25 #include <glib.h>
|
|
26 #include "connection.h"
|
8113
|
27 #include "roomlist.h"
|
7014
|
28 #include "sslconn.h"
|
2086
|
29
|
7014
|
30 #include "jutil.h"
|
|
31 #include "xmlnode.h"
|
2086
|
32
|
7014
|
33 typedef enum {
|
8312
|
34 JABBER_CAP_NONE = 0,
|
|
35 JABBER_CAP_XHTML = 1 << 0,
|
|
36 JABBER_CAP_COMPOSING = 1 << 1,
|
|
37 JABBER_CAP_SI = 1 << 2,
|
|
38 JABBER_CAP_SI_FILE_XFER = 1 << 3,
|
|
39 JABBER_CAP_BYTESTREAMS = 1 << 4,
|
|
40 JABBER_CAP_IBB = 1 << 5,
|
11393
|
41 JABBER_CAP_CHAT_STATES = 1 << 6,
|
8312
|
42 JABBER_CAP_RETRIEVED = 1 << 31
|
|
43 } JabberCapabilities;
|
|
44
|
|
45 typedef enum {
|
7014
|
46 JABBER_STREAM_OFFLINE,
|
|
47 JABBER_STREAM_CONNECTING,
|
|
48 JABBER_STREAM_INITIALIZING,
|
|
49 JABBER_STREAM_AUTHENTICATING,
|
|
50 JABBER_STREAM_REINITIALIZING,
|
|
51 JABBER_STREAM_CONNECTED
|
|
52 } JabberStreamState;
|
2086
|
53
|
7014
|
54 typedef struct _JabberStream
|
2086
|
55 {
|
7014
|
56 int fd;
|
2086
|
57
|
7014
|
58 GMarkupParseContext *context;
|
|
59 xmlnode *current;
|
2086
|
60
|
7014
|
61 enum {
|
|
62 JABBER_PROTO_0_9,
|
|
63 JABBER_PROTO_1_0
|
|
64 } protocol_version;
|
7291
|
65 enum {
|
8296
|
66 JABBER_AUTH_UNKNOWN,
|
7291
|
67 JABBER_AUTH_DIGEST_MD5,
|
8296
|
68 JABBER_AUTH_PLAIN,
|
|
69 JABBER_AUTH_IQ_AUTH
|
7291
|
70 } auth_type;
|
7014
|
71 char *stream_id;
|
|
72 JabberStreamState state;
|
2086
|
73
|
7014
|
74 /* SASL authentication */
|
|
75 char *expected_rspauth;
|
2086
|
76
|
7014
|
77 GHashTable *buddies;
|
|
78 gboolean roster_parsed;
|
2086
|
79
|
7014
|
80 GHashTable *chats;
|
8043
|
81 GList *chat_servers;
|
8113
|
82 GaimRoomlist *roomlist;
|
2086
|
83
|
8312
|
84 GHashTable *iq_callbacks;
|
|
85 GHashTable *disco_callbacks;
|
7014
|
86 int next_id;
|
2086
|
87
|
8312
|
88
|
7395
|
89 GList *oob_file_transfers;
|
7170
|
90 GList *file_transfers;
|
|
91
|
7014
|
92 time_t idle;
|
2086
|
93
|
7014
|
94 JabberID *user;
|
|
95 GaimConnection *gc;
|
|
96 GaimSslConnection *gsc;
|
7072
|
97
|
|
98 gboolean registration;
|
10189
|
99
|
|
100 char *avatar_hash;
|
10941
|
101 GSList *pending_avatar_requests;
|
7014
|
102 } JabberStream;
|
2086
|
103
|
7014
|
104 void jabber_process_packet(JabberStream *js, xmlnode *packet);
|
|
105 void jabber_send(JabberStream *js, xmlnode *data);
|
7642
|
106 void jabber_send_raw(JabberStream *js, const char *data, int len);
|
2086
|
107
|
7014
|
108 void jabber_stream_set_state(JabberStream *js, JabberStreamState state);
|
2086
|
109
|
7077
|
110 void jabber_register_parse(JabberStream *js, xmlnode *packet);
|
8016
|
111 void jabber_register_start(JabberStream *js);
|
7077
|
112
|
7014
|
113 char *jabber_get_next_id(JabberStream *js);
|
2086
|
114
|
8401
|
115 char *jabber_parse_error(JabberStream *js, xmlnode *packet);
|
|
116
|
7014
|
117 #endif /* _GAIM_JABBER_H_ */
|