Thu, 09 Feb 2006 04:17:56 +0000
[gaim-migrate @ 15563]
This is the soon-to-be-infamous nonblocking network activity patch that I've been working on. Feel free to yell at me if this makes you unhappy.
| 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" |
|
13201
8c224ef70efa
[gaim-migrate @ 15563]
Daniel Atallah <datallah@pidgin.im>
parents:
12508
diff
changeset
|
29 | #include "gaim_buffer.h" |
| 2086 | 30 | |
| 7014 | 31 | #include "jutil.h" |
| 32 | #include "xmlnode.h" | |
| 2086 | 33 | |
| 12508 | 34 | #ifdef HAVE_CYRUS_SASL |
| 35 | #include <sasl/sasl.h> | |
| 36 | #endif | |
| 37 | ||
| 7014 | 38 | typedef enum { |
| 8312 | 39 | JABBER_CAP_NONE = 0, |
| 40 | JABBER_CAP_XHTML = 1 << 0, | |
| 41 | JABBER_CAP_COMPOSING = 1 << 1, | |
| 42 | JABBER_CAP_SI = 1 << 2, | |
| 43 | JABBER_CAP_SI_FILE_XFER = 1 << 3, | |
| 44 | JABBER_CAP_BYTESTREAMS = 1 << 4, | |
| 45 | JABBER_CAP_IBB = 1 << 5, | |
| 11393 | 46 | JABBER_CAP_CHAT_STATES = 1 << 6, |
| 11675 | 47 | JABBER_CAP_IQ_SEARCH = 1 << 7, |
| 48 | JABBER_CAP_IQ_REGISTER = 1 << 8, | |
| 8312 | 49 | JABBER_CAP_RETRIEVED = 1 << 31 |
| 50 | } JabberCapabilities; | |
| 51 | ||
| 52 | typedef enum { | |
| 7014 | 53 | JABBER_STREAM_OFFLINE, |
| 54 | JABBER_STREAM_CONNECTING, | |
| 55 | JABBER_STREAM_INITIALIZING, | |
| 56 | JABBER_STREAM_AUTHENTICATING, | |
| 57 | JABBER_STREAM_REINITIALIZING, | |
| 58 | JABBER_STREAM_CONNECTED | |
| 59 | } JabberStreamState; | |
| 2086 | 60 | |
| 7014 | 61 | typedef struct _JabberStream |
| 2086 | 62 | { |
| 7014 | 63 | int fd; |
| 2086 | 64 | |
| 7014 | 65 | GMarkupParseContext *context; |
| 66 | xmlnode *current; | |
| 2086 | 67 | |
| 7014 | 68 | enum { |
| 69 | JABBER_PROTO_0_9, | |
| 70 | JABBER_PROTO_1_0 | |
| 71 | } protocol_version; | |
| 7291 | 72 | enum { |
| 8296 | 73 | JABBER_AUTH_UNKNOWN, |
| 7291 | 74 | JABBER_AUTH_DIGEST_MD5, |
| 8296 | 75 | JABBER_AUTH_PLAIN, |
| 12508 | 76 | JABBER_AUTH_IQ_AUTH, |
| 77 | JABBER_AUTH_CYRUS | |
| 7291 | 78 | } auth_type; |
| 7014 | 79 | char *stream_id; |
| 80 | JabberStreamState state; | |
| 2086 | 81 | |
| 7014 | 82 | /* SASL authentication */ |
| 83 | char *expected_rspauth; | |
| 2086 | 84 | |
| 7014 | 85 | GHashTable *buddies; |
| 86 | gboolean roster_parsed; | |
| 2086 | 87 | |
| 7014 | 88 | GHashTable *chats; |
| 8043 | 89 | GList *chat_servers; |
| 8113 | 90 | GaimRoomlist *roomlist; |
| 11675 | 91 | GList *user_directories; |
| 2086 | 92 | |
| 8312 | 93 | GHashTable *iq_callbacks; |
| 94 | GHashTable *disco_callbacks; | |
| 7014 | 95 | int next_id; |
| 2086 | 96 | |
| 8312 | 97 | |
| 7395 | 98 | GList *oob_file_transfers; |
| 7170 | 99 | GList *file_transfers; |
| 100 | ||
| 7014 | 101 | time_t idle; |
| 2086 | 102 | |
| 7014 | 103 | JabberID *user; |
| 104 | GaimConnection *gc; | |
| 105 | GaimSslConnection *gsc; | |
| 7072 | 106 | |
| 107 | gboolean registration; | |
| 10189 | 108 | |
| 109 | char *avatar_hash; | |
| 10941 | 110 | GSList *pending_avatar_requests; |
| 12508 | 111 | |
|
13201
8c224ef70efa
[gaim-migrate @ 15563]
Daniel Atallah <datallah@pidgin.im>
parents:
12508
diff
changeset
|
112 | GaimCircBuffer *write_buffer; |
|
8c224ef70efa
[gaim-migrate @ 15563]
Daniel Atallah <datallah@pidgin.im>
parents:
12508
diff
changeset
|
113 | guint writeh; |
|
8c224ef70efa
[gaim-migrate @ 15563]
Daniel Atallah <datallah@pidgin.im>
parents:
12508
diff
changeset
|
114 | |
| 12508 | 115 | /* OK, this stays at the end of the struct, so plugins can depend |
| 116 | * on the rest of the stuff being in the right place | |
| 117 | */ | |
| 118 | #ifdef HAVE_CYRUS_SASL | |
| 119 | sasl_conn_t *sasl; | |
| 120 | sasl_callback_t *sasl_cb; | |
| 121 | int sasl_state; | |
| 122 | int sasl_maxbuf; | |
| 123 | GString *sasl_mechs; | |
| 124 | #endif | |
| 125 | ||
| 7014 | 126 | } JabberStream; |
| 2086 | 127 | |
| 7014 | 128 | void jabber_process_packet(JabberStream *js, xmlnode *packet); |
| 129 | void jabber_send(JabberStream *js, xmlnode *data); | |
| 7642 | 130 | void jabber_send_raw(JabberStream *js, const char *data, int len); |
| 2086 | 131 | |
| 7014 | 132 | void jabber_stream_set_state(JabberStream *js, JabberStreamState state); |
| 2086 | 133 | |
| 7077 | 134 | void jabber_register_parse(JabberStream *js, xmlnode *packet); |
| 8016 | 135 | void jabber_register_start(JabberStream *js); |
| 7077 | 136 | |
| 7014 | 137 | char *jabber_get_next_id(JabberStream *js); |
| 2086 | 138 | |
| 8401 | 139 | char *jabber_parse_error(JabberStream *js, xmlnode *packet); |
| 140 | ||
| 7014 | 141 | #endif /* _GAIM_JABBER_H_ */ |