source: protocols/jabber/jabber.h @ f920d9e

Last change on this file since f920d9e 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
Line 
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
32typedef enum
33{
34        JFLAG_STREAM_STARTED = 1,       /* Set when we detected the beginning of the stream
35                                           and want to do auth. */
36        JFLAG_AUTHENTICATED = 2,        /* Set when we're successfully authenticatd. */
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. */
41        JFLAG_WAIT_BIND = 16,           /* ... for <bind> tag. */
42        JFLAG_WANT_TYPING = 32,         /* Set if we ever sent a typing notification, this
43                                           activates all XEP-85 related code. */
44} jabber_flags_t;
45
46typedef enum
47{
48        JBFLAG_PROBED_XEP85 = 1,        /* Set this when we sent our probe packet to make
49                                           sure it gets sent only once. */
50        JBFLAG_DOES_XEP85 = 2,          /* Set this when the resource seems to support
51                                           XEP85 (typing notification shite). */
52} jabber_buddy_flag_t;
53
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 */
69       
70        /* After changing one of these two (or the priority setting), call
71           presence_send_update() to inform the server about the changes. */
72        struct jabber_away_state *away_state;
73        char *away_message;
74       
75        GHashTable *node_cache;
76        GHashTable *buddies;
77};
78
79struct jabber_away_state
80{
81        char code[5];
82        char *full_name;
83};
84
85typedef xt_status (*jabber_cache_event) ( struct gaim_connection *gc, struct xt_node *node, struct xt_node *orig );
86
87struct jabber_cache_entry
88{
89        struct xt_node *node;
90        jabber_cache_event func;
91};
92
93struct jabber_buddy
94{
95        char *handle;
96        char *full_jid;
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
109/* iq.c */
110xt_status jabber_pkt_iq( struct xt_node *node, gpointer data );
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 );
113int jabber_get_roster( struct gaim_connection *gc );
114int jabber_get_vcard( struct gaim_connection *gc, char *bare_jid );
115int jabber_add_to_roster( struct gaim_connection *gc, char *handle, char *name );
116int jabber_remove_from_roster( struct gaim_connection *gc, char *handle );
117
118/* message.c */
119xt_status jabber_pkt_message( struct xt_node *node, gpointer data );
120
121/* presence.c */
122xt_status jabber_pkt_presence( struct xt_node *node, gpointer data );
123int presence_send_update( struct gaim_connection *gc );
124int presence_send_request( struct gaim_connection *gc, char *handle, char *request );
125
126/* jabber_util.c */
127char *set_eval_priority( set_t *set, char *value );
128char *set_eval_tls( set_t *set, char *value );
129struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children );
130struct xt_node *jabber_make_error_packet( struct xt_node *orig, char *err_cond, char *err_type );
131void jabber_cache_add( struct gaim_connection *gc, struct xt_node *node, jabber_cache_event func );
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 );
135const struct jabber_away_state *jabber_away_state_by_code( char *code );
136const struct jabber_away_state *jabber_away_state_by_name( char *name );
137void jabber_buddy_ask( struct gaim_connection *gc, char *handle );
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 );
141int jabber_buddy_remove_bare( struct gaim_connection *gc, char *bare_jid );
142
143extern const struct jabber_away_state jabber_away_state_list[];
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 );
149gboolean jabber_connected_ssl( gpointer data, void *source, b_input_condition cond );
150gboolean jabber_start_stream( struct gaim_connection *gc );
151void jabber_end_stream( struct gaim_connection *gc );
152
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 );
157gboolean sasl_supported( struct gaim_connection *gc );
158
159#endif
Note: See TracBrowser for help on using the repository browser.