source: protocols/jabber/jabber.h @ 7e83adca

Last change on this file since 7e83adca was 259edd4, checked in by Wilmer van der Gaast <wilmer@…>, at 2006-10-12T17:48:58Z

Special message when the XMPP session is ended because of a concurrent
login, and now sending proper error responses to IQ packets we can't
handle.

  • Property mode set to 100644
File size: 6.3 KB
RevLine 
[f06894d]1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
4*  Jabber module - Main file                                                *
5*                                                                           *
6*  Copyright 2006 Wilmer van der Gaast <wilmer@gaast.net>                   *
7*                                                                           *
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.                                      *
12*                                                                           *
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.                             *
17*                                                                           *
18*  You should have received a copy of the GNU General Public License along  *
19*  with this program; if not, write to the Free Software Foundation, Inc.,  *
20*  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.              *
21*                                                                           *
22\***************************************************************************/
23
24#ifndef _JABBER_H
25#define _JABBER_H
26
27#include <glib.h>
28
29#include "xmltree.h"
30#include "bitlbee.h"
31
[21167d2]32typedef enum
33{
[a21a8ac]34        JFLAG_STREAM_STARTED = 1,       /* Set when we detected the beginning of the stream
35                                           and want to do auth. */
[5997488]36        JFLAG_AUTHENTICATED = 2,        /* Set when we're successfully authenticatd. */
[a21a8ac]37        JFLAG_STREAM_RESTART = 4,       /* Set when we want to restart the stream (after
38                                           SASL or TLS). */
39        JFLAG_WAIT_SESSION = 8,         /* Set if we sent a <session> tag and need a reply
40                                           before we continue. */
[fe7a554]41        JFLAG_WAIT_BIND = 16,           /* ... for <bind> tag. */
[a21a8ac]42        JFLAG_WANT_TYPING = 32,         /* Set if we ever sent a typing notification, this
43                                           activates all JEP-85 related code. */
[21167d2]44} jabber_flags_t;
45
[a21a8ac]46typedef enum
47{
48        JBFLAG_PROBED_JEP85 = 1,        /* Set this when we sent our probe packet to make
49                                           sure it gets sent only once. */
50        JBFLAG_DOES_JEP85 = 2,          /* Set this when the resource seems to support
51                                           JEP85 (typing notification shite). */
52} jabber_buddy_flag_t;
53
[5e202b0]54struct jabber_data
55{
56        struct gaim_connection *gc;
57       
58        int fd;
59        void *ssl;
60        char *txq;
61        int tx_len;
62        int r_inpa, w_inpa;
63       
64        struct xt_parser *xt;
65        jabber_flags_t flags;
66       
67        char *username;         /* USERNAME@server */
68        char *server;           /* username@SERVER -=> server/domain, not hostname */
[172a73f1]69       
70        /* After changing one of these two (or the priority setting), call
71           presence_send_update() to inform the server about the changes. */
[5e202b0]72        struct jabber_away_state *away_state;
73        char *away_message;
74       
[038d17f]75        GHashTable *node_cache;
[6a1128d]76        GHashTable *buddies;
[5e202b0]77};
78
79struct jabber_away_state
80{
81        char code[5];
82        char *full_name;
83};
84
[861c199]85typedef xt_status (*jabber_cache_event) ( struct gaim_connection *gc, struct xt_node *node, struct xt_node *orig );
[038d17f]86
87struct jabber_cache_entry
88{
89        struct xt_node *node;
90        jabber_cache_event func;
91};
92
[6a1128d]93struct jabber_buddy
94{
95        char *handle;
[a21a8ac]96        char *full_jid;
[6a1128d]97        char *resource;
98       
99        int priority;
100        struct jabber_away_state *away_state;
101        char *away_message;
102       
103        time_t last_act;
104        int flags;
105       
106        struct jabber_buddy *next;
107};
108
[21167d2]109/* iq.c */
[f06894d]110xt_status jabber_pkt_iq( struct xt_node *node, gpointer data );
[861c199]111int jabber_init_iq_auth( struct gaim_connection *gc );
112xt_status jabber_pkt_bind_sess( struct gaim_connection *gc, struct xt_node *node, struct xt_node *orig );
[70f6aab8]113int jabber_get_roster( struct gaim_connection *gc );
[cfbb3a6]114int jabber_add_to_roster( struct gaim_connection *gc, char *handle, char *name );
115int jabber_remove_from_roster( struct gaim_connection *gc, char *handle );
[21167d2]116
[cfbb3a6]117/* message.c */
[f06894d]118xt_status jabber_pkt_message( struct xt_node *node, gpointer data );
[0b4a0db]119
120/* presence.c */
[f06894d]121xt_status jabber_pkt_presence( struct xt_node *node, gpointer data );
[172a73f1]122int presence_send_update( struct gaim_connection *gc );
[cfbb3a6]123int presence_send_request( struct gaim_connection *gc, char *handle, char *request );
[f06894d]124
[21167d2]125/* jabber_util.c */
[ebe7b36]126char *set_eval_priority( set_t *set, char *value );
[f06894d]127char *set_eval_tls( set_t *set, char *value );
[21167d2]128struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children );
[259edd4]129struct xt_node *jabber_make_error_packet( struct xt_node *orig, char *err_cond, char *err_type );
[861c199]130void jabber_cache_add( struct gaim_connection *gc, struct xt_node *node, jabber_cache_event func );
[038d17f]131struct xt_node *jabber_cache_get( struct gaim_connection *gc, char *id );
132void jabber_cache_entry_free( gpointer entry );
133void jabber_cache_clean( struct gaim_connection *gc );
[5e202b0]134const struct jabber_away_state *jabber_away_state_by_code( char *code );
135const struct jabber_away_state *jabber_away_state_by_name( char *name );
[8e5e2e9]136void jabber_buddy_ask( struct gaim_connection *gc, char *handle );
[6a1128d]137struct jabber_buddy *jabber_buddy_add( struct gaim_connection *gc, char *full_jid );
138struct jabber_buddy *jabber_buddy_by_jid( struct gaim_connection *gc, char *jid );
139int jabber_buddy_remove( struct gaim_connection *gc, char *full_jid );
[5e202b0]140
141extern const struct jabber_away_state jabber_away_state_list[];
[21167d2]142
143/* io.c */
144int jabber_write_packet( struct gaim_connection *gc, struct xt_node *node );
145int jabber_write( struct gaim_connection *gc, char *buf, int len );
146gboolean jabber_connected_plain( gpointer data, gint source, b_input_condition cond );
[42127dc]147gboolean jabber_connected_ssl( gpointer data, void *source, b_input_condition cond );
[4a0614e]148gboolean jabber_start_stream( struct gaim_connection *gc );
[5bcf70a]149void jabber_end_stream( struct gaim_connection *gc );
[21167d2]150
[5997488]151/* sasl.c */
152xt_status sasl_pkt_mechanisms( struct xt_node *node, gpointer data );
153xt_status sasl_pkt_challenge( struct xt_node *node, gpointer data );
154xt_status sasl_pkt_result( struct xt_node *node, gpointer data );
[8d74291]155gboolean sasl_supported( struct gaim_connection *gc );
[5997488]156
[f06894d]157#endif
Note: See TracBrowser for help on using the repository browser.