source: protocols/jabber/jabber.h @ 172a73f1

Last change on this file since 172a73f1 was 172a73f1, checked in by Wilmer van der Gaast <wilmer@…>, at 2006-09-24T10:25:41Z

Updated <presence> stuff to handle changing the priority setting.

  • Property mode set to 100644
File size: 4.4 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 and want to do auth. */
35        JFLAG_AUTHENTICATED = 2,        /* Set when we're successfully authenticatd. */
36        JFLAG_STREAM_RESTART = 4,       /* Set when we want to restart the stream (after SASL or TLS). */
37        JFLAG_WAIT_SESSION = 8,         /* Set if we sent a <session> tag and need a reply before we continue. */
38        JFLAG_WAIT_BIND = 16,           /* ... for <bind> tag. */
39} jabber_flags_t;
40
41struct jabber_data
42{
43        struct gaim_connection *gc;
44       
45        int fd;
46        void *ssl;
47        char *txq;
48        int tx_len;
49        int r_inpa, w_inpa;
50       
51        struct xt_parser *xt;
52        jabber_flags_t flags;
53       
54        char *username;         /* USERNAME@server */
55        char *server;           /* username@SERVER -=> server/domain, not hostname */
56       
57        /* After changing one of these two (or the priority setting), call
58           presence_send_update() to inform the server about the changes. */
59        struct jabber_away_state *away_state;
60        char *away_message;
61       
62        struct xt_node *node_cache;
63};
64
65struct jabber_away_state
66{
67        char code[5];
68        char *full_name;
69};
70
71/* iq.c */
72xt_status jabber_pkt_iq( struct xt_node *node, gpointer data );
73int jabber_start_iq_auth( struct gaim_connection *gc );
74int jabber_get_roster( struct gaim_connection *gc );
75
76xt_status jabber_pkt_message( struct xt_node *node, gpointer data );
77
78/* presence.c */
79xt_status jabber_pkt_presence( struct xt_node *node, gpointer data );
80int presence_send_update( struct gaim_connection *gc );
81
82/* jabber_util.c */
83char *set_eval_resprio( set_t *set, char *value );
84char *set_eval_tls( set_t *set, char *value );
85struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children );
86void jabber_cache_packet( struct gaim_connection *gc, struct xt_node *node );
87struct xt_node *jabber_packet_from_cache( struct gaim_connection *gc, char *id );
88const struct jabber_away_state *jabber_away_state_by_code( char *code );
89const struct jabber_away_state *jabber_away_state_by_name( char *name );
90
91extern const struct jabber_away_state jabber_away_state_list[];
92
93/* io.c */
94int jabber_write_packet( struct gaim_connection *gc, struct xt_node *node );
95int jabber_write( struct gaim_connection *gc, char *buf, int len );
96gboolean jabber_connected_plain( gpointer data, gint source, b_input_condition cond );
97gboolean jabber_start_stream( struct gaim_connection *gc );
98void jabber_end_stream( struct gaim_connection *gc );
99
100/* sasl.c */
101xt_status sasl_pkt_mechanisms( struct xt_node *node, gpointer data );
102xt_status sasl_pkt_challenge( struct xt_node *node, gpointer data );
103xt_status sasl_pkt_result( struct xt_node *node, gpointer data );
104gboolean sasl_supported( struct gaim_connection *gc );
105
106#endif
Note: See TracBrowser for help on using the repository browser.