Sat, 21 Feb 2004 20:59:07 +0000
[gaim-migrate @ 9035]
I don't remember this being here before
| 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 { |
| 34 | JABBER_STREAM_OFFLINE, | |
| 35 | JABBER_STREAM_CONNECTING, | |
| 36 | JABBER_STREAM_INITIALIZING, | |
| 37 | JABBER_STREAM_AUTHENTICATING, | |
| 38 | JABBER_STREAM_REINITIALIZING, | |
| 39 | JABBER_STREAM_CONNECTED | |
| 40 | } JabberStreamState; | |
| 2086 | 41 | |
| 7014 | 42 | typedef struct _JabberStream |
| 2086 | 43 | { |
| 7014 | 44 | int fd; |
| 2086 | 45 | |
| 7014 | 46 | GMarkupParseContext *context; |
| 47 | xmlnode *current; | |
| 2086 | 48 | |
| 7014 | 49 | enum { |
| 50 | JABBER_PROTO_0_9, | |
| 51 | JABBER_PROTO_1_0 | |
| 52 | } protocol_version; | |
| 7291 | 53 | enum { |
| 8296 | 54 | JABBER_AUTH_UNKNOWN, |
| 7291 | 55 | JABBER_AUTH_DIGEST_MD5, |
| 8296 | 56 | JABBER_AUTH_PLAIN, |
| 57 | JABBER_AUTH_IQ_AUTH | |
| 7291 | 58 | } auth_type; |
| 7014 | 59 | char *stream_id; |
| 60 | JabberStreamState state; | |
| 2086 | 61 | |
| 7014 | 62 | /* SASL authentication */ |
| 63 | char *expected_rspauth; | |
| 2086 | 64 | |
| 7014 | 65 | GHashTable *buddies; |
| 66 | gboolean roster_parsed; | |
| 2086 | 67 | |
| 7014 | 68 | GHashTable *chats; |
| 8043 | 69 | GList *chat_servers; |
| 8113 | 70 | GaimRoomlist *roomlist; |
| 2086 | 71 | |
| 7014 | 72 | GHashTable *callbacks; |
| 73 | int next_id; | |
| 2086 | 74 | |
| 7395 | 75 | GList *oob_file_transfers; |
| 7170 | 76 | GList *file_transfers; |
| 77 | ||
| 7014 | 78 | time_t idle; |
| 2086 | 79 | |
| 7014 | 80 | JabberID *user; |
| 81 | GaimConnection *gc; | |
| 82 | GaimSslConnection *gsc; | |
| 7072 | 83 | |
| 84 | gboolean registration; | |
| 7014 | 85 | } JabberStream; |
| 2086 | 86 | |
| 7014 | 87 | void jabber_process_packet(JabberStream *js, xmlnode *packet); |
| 88 | void jabber_send(JabberStream *js, xmlnode *data); | |
| 7642 | 89 | void jabber_send_raw(JabberStream *js, const char *data, int len); |
| 2086 | 90 | |
| 7014 | 91 | void jabber_stream_set_state(JabberStream *js, JabberStreamState state); |
| 2086 | 92 | |
| 7077 | 93 | void jabber_register_parse(JabberStream *js, xmlnode *packet); |
| 8016 | 94 | void jabber_register_start(JabberStream *js); |
| 7077 | 95 | |
| 7014 | 96 | char *jabber_get_next_id(JabberStream *js); |
| 2086 | 97 | |
| 8043 | 98 | void jabber_iq_disco_server(JabberStream *js); |
| 99 | ||
| 7014 | 100 | #endif /* _GAIM_JABBER_H_ */ |