source: protocols/jabber/jabber.h @ 1991be6

Last change on this file since 1991be6 was 1991be6, checked in by Wilmer van der Gaast <wilmer@…>, at 2006-10-18T17:47:08Z

get_info() now displays vCard information too.

  • Property mode set to 100644
File size: 6.5 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
[788a1af]43                                           activates all XEP-85 related code. */
[21167d2]44} jabber_flags_t;
45
[a21a8ac]46typedef enum
47{
[788a1af]48        JBFLAG_PROBED_XEP85 = 1,        /* Set this when we sent our probe packet to make
[a21a8ac]49                                           sure it gets sent only once. */
[788a1af]50        JBFLAG_DOES_XEP85 = 2,          /* Set this when the resource seems to support
51                                           XEP85 (typing notification shite). */
[a21a8ac]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 );
[1991be6]114int jabber_get_vcard( struct gaim_connection *gc, char *bare_jid );
[cfbb3a6]115int jabber_add_to_roster( struct gaim_connection *gc, char *handle, char *name );
116int jabber_remove_from_roster( struct gaim_connection *gc, char *handle );
[21167d2]117
[cfbb3a6]118/* message.c */
[f06894d]119xt_status jabber_pkt_message( struct xt_node *node, gpointer data );
[0b4a0db]120
121/* presence.c */
[f06894d]122xt_status jabber_pkt_presence( struct xt_node *node, gpointer data );
[172a73f1]123int presence_send_update( struct gaim_connection *gc );
[cfbb3a6]124int presence_send_request( struct gaim_connection *gc, char *handle, char *request );
[f06894d]125
[21167d2]126/* jabber_util.c */
[ebe7b36]127char *set_eval_priority( set_t *set, char *value );
[f06894d]128char *set_eval_tls( set_t *set, char *value );
[21167d2]129struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children );
[259edd4]130struct xt_node *jabber_make_error_packet( struct xt_node *orig, char *err_cond, char *err_type );
[861c199]131void jabber_cache_add( struct gaim_connection *gc, struct xt_node *node, jabber_cache_event func );
[038d17f]132struct xt_node *jabber_cache_get( struct gaim_connection *gc, char *id );
133void jabber_cache_entry_free( gpointer entry );
134void jabber_cache_clean( struct gaim_connection *gc );
[5e202b0]135const struct jabber_away_state *jabber_away_state_by_code( char *code );
136const struct jabber_away_state *jabber_away_state_by_name( char *name );
[8e5e2e9]137void jabber_buddy_ask( struct gaim_connection *gc, char *handle );
[6a1128d]138struct jabber_buddy *jabber_buddy_add( struct gaim_connection *gc, char *full_jid );
139struct jabber_buddy *jabber_buddy_by_jid( struct gaim_connection *gc, char *jid );
140int jabber_buddy_remove( struct gaim_connection *gc, char *full_jid );
[788a1af]141int jabber_buddy_remove_bare( struct gaim_connection *gc, char *bare_jid );
[5e202b0]142
143extern const struct jabber_away_state jabber_away_state_list[];
[21167d2]144
145/* io.c */
146int jabber_write_packet( struct gaim_connection *gc, struct xt_node *node );
147int jabber_write( struct gaim_connection *gc, char *buf, int len );
148gboolean jabber_connected_plain( gpointer data, gint source, b_input_condition cond );
[42127dc]149gboolean jabber_connected_ssl( gpointer data, void *source, b_input_condition cond );
[4a0614e]150gboolean jabber_start_stream( struct gaim_connection *gc );
[5bcf70a]151void jabber_end_stream( struct gaim_connection *gc );
[21167d2]152
[5997488]153/* sasl.c */
154xt_status sasl_pkt_mechanisms( struct xt_node *node, gpointer data );
155xt_status sasl_pkt_challenge( struct xt_node *node, gpointer data );
156xt_status sasl_pkt_result( struct xt_node *node, gpointer data );
[8d74291]157gboolean sasl_supported( struct gaim_connection *gc );
[5997488]158
[f06894d]159#endif
Note: See TracBrowser for help on using the repository browser.