Thu, 28 Apr 2005 01:06:31 +0000
[gaim-migrate @ 12582]
Rename create_prpl_icon to gaim_gtk_create_prpl_icon, remove some dead
code from gtkconv, and use G_MODULE_BIND_LOCAL - this breaks perl plugins,
and should be added to the list of things that need fixing to save perl.
Semi-fix the raw plugin too, but only if your filesystem is being friendly
in where it puts stuff.
| 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, | |
| 41 | JABBER_CAP_RETRIEVED = 1 << 31 | |
| 42 | } JabberCapabilities; | |
| 43 | ||
| 44 | typedef enum { | |
| 7014 | 45 | JABBER_STREAM_OFFLINE, |
| 46 | JABBER_STREAM_CONNECTING, | |
| 47 | JABBER_STREAM_INITIALIZING, | |
| 48 | JABBER_STREAM_AUTHENTICATING, | |
| 49 | JABBER_STREAM_REINITIALIZING, | |
| 50 | JABBER_STREAM_CONNECTED | |
| 51 | } JabberStreamState; | |
| 2086 | 52 | |
| 7014 | 53 | typedef struct _JabberStream |
| 2086 | 54 | { |
| 7014 | 55 | int fd; |
| 2086 | 56 | |
| 7014 | 57 | GMarkupParseContext *context; |
| 58 | xmlnode *current; | |
| 2086 | 59 | |
| 7014 | 60 | enum { |
| 61 | JABBER_PROTO_0_9, | |
| 62 | JABBER_PROTO_1_0 | |
| 63 | } protocol_version; | |
| 7291 | 64 | enum { |
| 8296 | 65 | JABBER_AUTH_UNKNOWN, |
| 7291 | 66 | JABBER_AUTH_DIGEST_MD5, |
| 8296 | 67 | JABBER_AUTH_PLAIN, |
| 68 | JABBER_AUTH_IQ_AUTH | |
| 7291 | 69 | } auth_type; |
| 7014 | 70 | char *stream_id; |
| 71 | JabberStreamState state; | |
| 2086 | 72 | |
| 7014 | 73 | /* SASL authentication */ |
| 74 | char *expected_rspauth; | |
| 2086 | 75 | |
| 7014 | 76 | GHashTable *buddies; |
| 77 | gboolean roster_parsed; | |
| 2086 | 78 | |
| 7014 | 79 | GHashTable *chats; |
| 8043 | 80 | GList *chat_servers; |
| 8113 | 81 | GaimRoomlist *roomlist; |
| 2086 | 82 | |
| 8312 | 83 | GHashTable *iq_callbacks; |
| 84 | GHashTable *disco_callbacks; | |
| 7014 | 85 | int next_id; |
| 2086 | 86 | |
| 8312 | 87 | |
| 7395 | 88 | GList *oob_file_transfers; |
| 7170 | 89 | GList *file_transfers; |
| 90 | ||
| 7014 | 91 | time_t idle; |
| 2086 | 92 | |
| 7014 | 93 | JabberID *user; |
| 94 | GaimConnection *gc; | |
| 95 | GaimSslConnection *gsc; | |
| 7072 | 96 | |
| 97 | gboolean registration; | |
| 10189 | 98 | |
| 99 | char *avatar_hash; | |
| 7014 | 100 | } JabberStream; |
| 2086 | 101 | |
| 7014 | 102 | void jabber_process_packet(JabberStream *js, xmlnode *packet); |
| 103 | void jabber_send(JabberStream *js, xmlnode *data); | |
| 7642 | 104 | void jabber_send_raw(JabberStream *js, const char *data, int len); |
| 2086 | 105 | |
| 7014 | 106 | void jabber_stream_set_state(JabberStream *js, JabberStreamState state); |
| 2086 | 107 | |
| 7077 | 108 | void jabber_register_parse(JabberStream *js, xmlnode *packet); |
| 8016 | 109 | void jabber_register_start(JabberStream *js); |
| 7077 | 110 | |
| 7014 | 111 | char *jabber_get_next_id(JabberStream *js); |
| 2086 | 112 | |
| 8401 | 113 | char *jabber_parse_error(JabberStream *js, xmlnode *packet); |
| 114 | ||
| 7014 | 115 | #endif /* _GAIM_JABBER_H_ */ |