1 | /***************************************************************************\ |
---|
2 | * * |
---|
3 | * BitlBee - An IRC to IM gateway * |
---|
4 | * Jabber module - Misc. stuff * |
---|
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 | #include "jabber.h" |
---|
25 | |
---|
26 | static int next_id = 1; |
---|
27 | |
---|
28 | char *set_eval_resprio( set_t *set, char *value ) |
---|
29 | { |
---|
30 | account_t *acc = set->data; |
---|
31 | |
---|
32 | /* Only run this stuff if the account is online ATM. */ |
---|
33 | if( acc->gc ) |
---|
34 | { |
---|
35 | /* ... */ |
---|
36 | } |
---|
37 | |
---|
38 | if( g_strcasecmp( set->key, "priority" ) == 0 ) |
---|
39 | return set_eval_int( set, value ); |
---|
40 | else |
---|
41 | return value; |
---|
42 | } |
---|
43 | |
---|
44 | char *set_eval_tls( set_t *set, char *value ) |
---|
45 | { |
---|
46 | if( g_strcasecmp( value, "try" ) == 0 ) |
---|
47 | return value; |
---|
48 | else |
---|
49 | return set_eval_bool( set, value ); |
---|
50 | } |
---|
51 | |
---|
52 | struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children ) |
---|
53 | { |
---|
54 | char *id = g_strdup_printf( "BeeX%04x", next_id++ ); |
---|
55 | struct xt_node *node; |
---|
56 | |
---|
57 | node = xt_new_node( name, NULL, children ); |
---|
58 | |
---|
59 | xt_add_attr( node, "id", id ); |
---|
60 | if( type ) |
---|
61 | xt_add_attr( node, "type", type ); |
---|
62 | if( to ) |
---|
63 | xt_add_attr( node, "to", to ); |
---|
64 | |
---|
65 | g_free( id ); |
---|
66 | |
---|
67 | return node; |
---|
68 | } |
---|