source: protocols/jabber/jabber.c @ 830864d

Last change on this file since 830864d was 7733b8c, checked in by dequis <dx@…>, at 2015-02-21T06:10:54Z

Add the concept of jabber sub-protocols

Currently including: jabber (none), gtalk, facebook, hipchat.

They provide a default server field and an oauth service definition.

Also the "account tag guesses" become subprotocol guesses

  • Property mode set to 100644
File size: 19.6 KB
Line 
1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
4*  Jabber module - Main file                                                *
5*                                                                           *
6*  Copyright 2006-2013 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 <glib.h>
25#include <string.h>
26#include <unistd.h>
27#include <ctype.h>
28#include <stdio.h>
29
30#include "ssl_client.h"
31#include "xmltree.h"
32#include "bitlbee.h"
33#include "jabber.h"
34#include "oauth.h"
35#include "md5.h"
36
37GSList *jabber_connections;
38
39/* First enty is the default */
40static const int jabber_port_list[] = {
41        5222,
42        5223,
43        5220,
44        5221,
45        5224,
46        5225,
47        5226,
48        5227,
49        5228,
50        5229,
51        80,
52        443,
53        0
54};
55
56static jabber_subproto_desc_t jabber_subproto_list[] = {
57        { "jabber", JSUB_NONE, NULL, NULL },
58        { "gtalk", JSUB_GTALK, &oauth2_service_google, "talk.google.com" },
59        { "fb", JSUB_FACEBOOK, &oauth2_service_facebook, "chat.facebook.com" },
60        { "hipchat", JSUB_HIPCHAT, NULL, "chat.hipchat.com" },
61        { NULL },
62};
63
64static void jabber_init(account_t *acc)
65{
66        set_t *s;
67        char str[16];
68        jabber_subproto_desc_t *subproto = acc->prpl->data;
69
70        s = set_add(&acc->set, "activity_timeout", "600", set_eval_int, acc);
71
72        s = set_add(&acc->set, "display_name", NULL, NULL, acc);
73
74        if (subproto->oauth2_service) {
75                s = set_add(&acc->set, "oauth", "false", set_eval_oauth, acc);
76        }
77
78        g_snprintf(str, sizeof(str), "%d", jabber_port_list[0]);
79        s = set_add(&acc->set, "port", str, set_eval_int, acc);
80        s->flags |= ACC_SET_OFFLINE_ONLY;
81
82        s = set_add(&acc->set, "priority", "0", set_eval_priority, acc);
83
84        s = set_add(&acc->set, "proxy", "<local>;<auto>", NULL, acc);
85
86        s = set_add(&acc->set, "resource", "BitlBee", NULL, acc);
87        s->flags |= ACC_SET_OFFLINE_ONLY;
88
89        s = set_add(&acc->set, "resource_select", "activity", NULL, acc);
90
91        s = set_add(&acc->set, "sasl", "true", set_eval_bool, acc);
92        s->flags |= ACC_SET_OFFLINE_ONLY | SET_HIDDEN_DEFAULT;
93
94        s = set_add(&acc->set, "server", NULL, set_eval_account, acc);
95        s->flags |= SET_NOSAVE | ACC_SET_OFFLINE_ONLY | SET_NULL_OK;
96
97        s = set_add(&acc->set, "ssl", "false", set_eval_bool, acc);
98        s->flags |= ACC_SET_OFFLINE_ONLY;
99
100        s = set_add(&acc->set, "tls", "true", set_eval_tls, acc);
101        s->flags |= ACC_SET_OFFLINE_ONLY;
102
103        s = set_add(&acc->set, "tls_verify", "true", set_eval_bool, acc);
104        s->flags |= ACC_SET_OFFLINE_ONLY;
105
106        s = set_add(&acc->set, "user_agent", "BitlBee", NULL, acc);
107
108        s = set_add(&acc->set, "xmlconsole", "false", set_eval_bool, acc);
109        s->flags |= ACC_SET_OFFLINE_ONLY;
110
111        acc->flags |= ACC_FLAG_AWAY_MESSAGE | ACC_FLAG_STATUS_MESSAGE |
112                      ACC_FLAG_HANDLE_DOMAINS;
113
114        if (subproto->server) {
115                set_setstr(&acc->set, "server", (char *) subproto->server);
116        }
117}
118
119static void jabber_generate_id_hash(struct jabber_data *jd);
120
121static void jabber_login(account_t *acc)
122{
123        struct im_connection *ic = imcb_new(acc);
124        struct jabber_data *jd = g_new0(struct jabber_data, 1);
125        jabber_subproto_desc_t *subproto = acc->prpl->data;
126        char *s;
127
128        /* For now this is needed in the _connected() handlers if using
129           GLib event handling, to make sure we're not handling events
130           on dead connections. */
131        jabber_connections = g_slist_prepend(jabber_connections, ic);
132
133        jd->ic = ic;
134        ic->proto_data = jd;
135        jd->subproto = subproto->id;
136
137        jabber_set_me(ic, acc->user);
138
139        jd->fd = jd->r_inpa = jd->w_inpa = -1;
140
141        if (jd->server == NULL) {
142                imcb_error(ic, "Incomplete account name (format it like <username@jabberserver.name>)");
143                imc_logout(ic, FALSE);
144                return;
145        }
146
147        if ((s = strchr(jd->server, '/'))) {
148                *s = 0;
149                set_setstr(&acc->set, "resource", s + 1);
150
151                /* Also remove the /resource from the original variable so we
152                   won't have to do this again every time. */
153                s = strchr(acc->user, '/');
154                *s = 0;
155        }
156
157        jd->node_cache = g_hash_table_new_full(g_str_hash, g_str_equal, NULL, jabber_cache_entry_free);
158        jd->buddies = g_hash_table_new(g_str_hash, g_str_equal);
159
160        if (subproto->oauth2_service && set_getbool(&acc->set, "oauth")) {
161                GSList *p_in = NULL;
162                const char *tok;
163
164                jd->fd = jd->r_inpa = jd->w_inpa = -1;
165
166                jd->oauth2_service = subproto->oauth2_service;
167
168                oauth_params_parse(&p_in, ic->acc->pass);
169
170                /* First see if we have a refresh token, in which case any
171                   access token we *might* have has probably expired already
172                   anyway. */
173                if ((tok = oauth_params_get(&p_in, "refresh_token"))) {
174                        sasl_oauth2_refresh(ic, tok);
175                }
176                /* If we don't have a refresh token, let's hope the access
177                   token is still usable. */
178                else if ((tok = oauth_params_get(&p_in, "access_token"))) {
179                        jd->oauth2_access_token = g_strdup(tok);
180                        jabber_connect(ic);
181                }
182                /* If we don't have any, start the OAuth process now. Don't
183                   even open an XMPP connection yet. */
184                else {
185                        sasl_oauth2_init(ic);
186                        ic->flags |= OPT_SLOW_LOGIN;
187                }
188
189                oauth_params_free(&p_in);
190        } else {
191                jabber_connect(ic);
192        }
193}
194
195/* Separate this from jabber_login() so we can do OAuth first if necessary.
196   Putting this in io.c would probably be more correct. */
197void jabber_connect(struct im_connection *ic)
198{
199        account_t *acc = ic->acc;
200        struct jabber_data *jd = ic->proto_data;
201        int i;
202        char *connect_to;
203        struct ns_srv_reply **srvl = NULL, *srv = NULL;
204
205        /* Figure out the hostname to connect to. */
206        if (acc->server && *acc->server) {
207                connect_to = acc->server;
208        } else if ((srvl = srv_lookup("xmpp-client", "tcp", jd->server)) ||
209                   (srvl = srv_lookup("jabber-client", "tcp", jd->server))) {
210                /* Find the lowest-priority one. These usually come
211                   back in random/shuffled order. Not looking at
212                   weights etc for now. */
213                srv = *srvl;
214                for (i = 1; srvl[i]; i++) {
215                        if (srvl[i]->prio < srv->prio) {
216                                srv = srvl[i];
217                        }
218                }
219
220                connect_to = srv->name;
221        } else {
222                connect_to = jd->server;
223        }
224
225        imcb_log(ic, "Connecting");
226
227        for (i = 0; jabber_port_list[i] > 0; i++) {
228                if (set_getint(&acc->set, "port") == jabber_port_list[i]) {
229                        break;
230                }
231        }
232
233        if (jabber_port_list[i] == 0) {
234                imcb_log(ic, "Illegal port number");
235                imc_logout(ic, FALSE);
236                return;
237        }
238
239        /* For non-SSL connections we can try to use the port # from the SRV
240           reply, but let's not do that when using SSL, SSL usually runs on
241           non-standard ports... */
242        if (set_getbool(&acc->set, "ssl")) {
243                jd->ssl = ssl_connect(connect_to, set_getint(&acc->set, "port"), set_getbool(&acc->set,
244                                                                                             "tls_verify"), jabber_connected_ssl,
245                                      ic);
246                jd->fd = jd->ssl ? ssl_getfd(jd->ssl) : -1;
247        } else {
248                jd->fd = proxy_connect(connect_to, srv ? srv->port : set_getint(&acc->set,
249                                                                                "port"), jabber_connected_plain, ic);
250        }
251        srv_free(srvl);
252
253        if (jd->fd == -1) {
254                imcb_error(ic, "Could not connect to server");
255                imc_logout(ic, TRUE);
256
257                return;
258        }
259
260        if (set_getbool(&acc->set, "xmlconsole")) {
261                jd->flags |= JFLAG_XMLCONSOLE;
262                /* Shouldn't really do this at this stage already, maybe. But
263                   I think this shouldn't break anything. */
264                imcb_add_buddy(ic, JABBER_XMLCONSOLE_HANDLE, NULL);
265        }
266
267        jabber_generate_id_hash(jd);
268}
269
270/* This generates an unfinished md5_state_t variable. Every time we generate
271   an ID, we finish the state by adding a sequence number and take the hash. */
272static void jabber_generate_id_hash(struct jabber_data *jd)
273{
274        md5_byte_t binbuf[4];
275        char *s;
276
277        md5_init(&jd->cached_id_prefix);
278        md5_append(&jd->cached_id_prefix, (unsigned char *) jd->username, strlen(jd->username));
279        md5_append(&jd->cached_id_prefix, (unsigned char *) jd->server, strlen(jd->server));
280        s = set_getstr(&jd->ic->acc->set, "resource");
281        md5_append(&jd->cached_id_prefix, (unsigned char *) s, strlen(s));
282        random_bytes(binbuf, 4);
283        md5_append(&jd->cached_id_prefix, binbuf, 4);
284}
285
286static void jabber_logout(struct im_connection *ic)
287{
288        struct jabber_data *jd = ic->proto_data;
289
290        while (jd->filetransfers) {
291                imcb_file_canceled(ic, (( struct jabber_transfer *) jd->filetransfers->data)->ft, "Logging out");
292        }
293
294        while (jd->streamhosts) {
295                jabber_streamhost_t *sh = jd->streamhosts->data;
296                jd->streamhosts = g_slist_remove(jd->streamhosts, sh);
297                g_free(sh->jid);
298                g_free(sh->host);
299                g_free(sh);
300        }
301
302        if (jd->fd >= 0) {
303                jabber_end_stream(ic);
304        }
305
306        while (ic->groupchats) {
307                jabber_chat_free(ic->groupchats->data);
308        }
309
310        if (jd->r_inpa >= 0) {
311                b_event_remove(jd->r_inpa);
312        }
313        if (jd->w_inpa >= 0) {
314                b_event_remove(jd->w_inpa);
315        }
316
317        if (jd->ssl) {
318                ssl_disconnect(jd->ssl);
319        }
320        if (jd->fd >= 0) {
321                closesocket(jd->fd);
322        }
323
324        if (jd->tx_len) {
325                g_free(jd->txq);
326        }
327
328        if (jd->node_cache) {
329                g_hash_table_destroy(jd->node_cache);
330        }
331
332        jabber_buddy_remove_all(ic);
333
334        xt_free(jd->xt);
335
336        md5_free(&jd->cached_id_prefix);
337
338        g_free(jd->oauth2_access_token);
339        g_free(jd->away_message);
340        g_free(jd->internal_jid);
341        g_free(jd->username);
342        g_free(jd->me);
343        g_free(jd);
344
345        jabber_connections = g_slist_remove(jabber_connections, ic);
346}
347
348static int jabber_buddy_msg(struct im_connection *ic, char *who, char *message, int flags)
349{
350        struct jabber_data *jd = ic->proto_data;
351        struct jabber_buddy *bud;
352        struct xt_node *node;
353        char *s;
354        int st;
355
356        if (g_strcasecmp(who, JABBER_XMLCONSOLE_HANDLE) == 0) {
357                return jabber_write(ic, message, strlen(message));
358        }
359
360        if (g_strcasecmp(who, JABBER_OAUTH_HANDLE) == 0 &&
361            !(jd->flags & OPT_LOGGED_IN) && jd->fd == -1) {
362                if (sasl_oauth2_get_refresh_token(ic, message)) {
363                        return 1;
364                } else {
365                        imcb_error(ic, "OAuth failure");
366                        imc_logout(ic, TRUE);
367                        return 0;
368                }
369        }
370
371        if ((s = strchr(who, '=')) && jabber_chat_by_jid(ic, s + 1)) {
372                bud = jabber_buddy_by_ext_jid(ic, who, 0);
373        } else {
374                bud = jabber_buddy_by_jid(ic, who, GET_BUDDY_BARE_OK);
375        }
376
377        node = xt_new_node("body", message, NULL);
378        node = jabber_make_packet("message", "chat", bud ? bud->full_jid : who, node);
379
380        if (bud && (jd->flags & JFLAG_WANT_TYPING) &&
381            ((bud->flags & JBFLAG_DOES_XEP85) ||
382             !(bud->flags & JBFLAG_PROBED_XEP85))) {
383                struct xt_node *act;
384
385                /* If the user likes typing notification and if we don't know
386                   (and didn't probe before) if this resource supports XEP85,
387                   include a probe in this packet now. Also, if we know this
388                   buddy does support XEP85, we have to send this <active/>
389                   tag to tell that the user stopped typing (well, that's what
390                   we guess when s/he pressed Enter...). */
391                act = xt_new_node("active", NULL, NULL);
392                xt_add_attr(act, "xmlns", XMLNS_CHATSTATES);
393                xt_add_child(node, act);
394
395                /* Just make sure we do this only once. */
396                bud->flags |= JBFLAG_PROBED_XEP85;
397        }
398
399        st = jabber_write_packet(ic, node);
400        xt_free_node(node);
401
402        return st;
403}
404
405static GList *jabber_away_states(struct im_connection *ic)
406{
407        static GList *l = NULL;
408        int i;
409
410        if (l == NULL) {
411                for (i = 0; jabber_away_state_list[i].full_name; i++) {
412                        l = g_list_append(l, (void *) jabber_away_state_list[i].full_name);
413                }
414        }
415
416        return l;
417}
418
419static void jabber_get_info(struct im_connection *ic, char *who)
420{
421        struct jabber_buddy *bud;
422
423        bud = jabber_buddy_by_jid(ic, who, GET_BUDDY_FIRST);
424
425        while (bud) {
426                imcb_log(ic, "Buddy %s (%d) information:", bud->full_jid, bud->priority);
427                if (bud->away_state) {
428                        imcb_log(ic, "Away state: %s", bud->away_state->full_name);
429                }
430                imcb_log(ic, "Status message: %s", bud->away_message ? bud->away_message : "(none)");
431
432                bud = bud->next;
433        }
434
435        jabber_get_vcard(ic, bud ? bud->full_jid : who);
436}
437
438static void jabber_set_away(struct im_connection *ic, char *state_txt, char *message)
439{
440        struct jabber_data *jd = ic->proto_data;
441
442        /* state_txt == NULL -> Not away.
443           Unknown state -> fall back to the first defined away state. */
444        if (state_txt == NULL) {
445                jd->away_state = NULL;
446        } else if ((jd->away_state = jabber_away_state_by_name(state_txt)) == NULL) {
447                jd->away_state = jabber_away_state_list;
448        }
449
450        g_free(jd->away_message);
451        jd->away_message = (message && *message) ? g_strdup(message) : NULL;
452
453        presence_send_update(ic);
454}
455
456static void jabber_add_buddy(struct im_connection *ic, char *who, char *group)
457{
458        struct jabber_data *jd = ic->proto_data;
459
460        if (g_strcasecmp(who, JABBER_XMLCONSOLE_HANDLE) == 0) {
461                jd->flags |= JFLAG_XMLCONSOLE;
462                imcb_add_buddy(ic, JABBER_XMLCONSOLE_HANDLE, NULL);
463                return;
464        }
465
466        if (jabber_add_to_roster(ic, who, NULL, group)) {
467                presence_send_request(ic, who, "subscribe");
468        }
469}
470
471static void jabber_remove_buddy(struct im_connection *ic, char *who, char *group)
472{
473        struct jabber_data *jd = ic->proto_data;
474
475        if (g_strcasecmp(who, JABBER_XMLCONSOLE_HANDLE) == 0) {
476                jd->flags &= ~JFLAG_XMLCONSOLE;
477                /* Not necessary for now. And for now the code isn't too
478                   happy if the buddy is completely gone right after calling
479                   this function already.
480                imcb_remove_buddy( ic, JABBER_XMLCONSOLE_HANDLE, NULL );
481                */
482                return;
483        }
484
485        /* We should always do this part. Clean up our administration a little bit. */
486        jabber_buddy_remove_bare(ic, who);
487
488        if (jabber_remove_from_roster(ic, who)) {
489                presence_send_request(ic, who, "unsubscribe");
490        }
491}
492
493static struct groupchat *jabber_chat_join_(struct im_connection *ic, const char *room, const char *nick,
494                                           const char *password, set_t **sets)
495{
496        struct jabber_data *jd = ic->proto_data;
497        char *final_nick;
498
499        /* Ignore the passed nick parameter if we have our own default */
500        if (!(final_nick = set_getstr(sets, "nick")) &&
501            !(final_nick = set_getstr(&ic->acc->set, "display_name"))) {
502                /* Well, whatever, actually use the provided default, then */
503                final_nick = (char *) nick;
504        }
505
506        if (strchr(room, '@') == NULL) {
507                imcb_error(ic, "%s is not a valid Jabber room name. Maybe you mean %s@conference.%s?",
508                           room, room, jd->server);
509        } else if (jabber_chat_by_jid(ic, room)) {
510                imcb_error(ic, "Already present in chat `%s'", room);
511        } else {
512                return jabber_chat_join(ic, room, final_nick, set_getstr(sets, "password"));
513        }
514
515        return NULL;
516}
517
518static struct groupchat *jabber_chat_with_(struct im_connection *ic, char *who)
519{
520        return jabber_chat_with(ic, who);
521}
522
523static void jabber_chat_msg_(struct groupchat *c, char *message, int flags)
524{
525        if (c && message) {
526                jabber_chat_msg(c, message, flags);
527        }
528}
529
530static void jabber_chat_topic_(struct groupchat *c, char *topic)
531{
532        if (c && topic) {
533                jabber_chat_topic(c, topic);
534        }
535}
536
537static void jabber_chat_leave_(struct groupchat *c)
538{
539        if (c) {
540                jabber_chat_leave(c, NULL);
541        }
542}
543
544static void jabber_chat_invite_(struct groupchat *c, char *who, char *msg)
545{
546        struct jabber_data *jd = c->ic->proto_data;
547        struct jabber_chat *jc = c->data;
548        gchar *msg_alt = NULL;
549
550        if (msg == NULL) {
551                msg_alt = g_strdup_printf("%s invited you to %s", jd->me, jc->name);
552        }
553
554        if (c && who) {
555                jabber_chat_invite(c, who, msg ? msg : msg_alt);
556        }
557
558        g_free(msg_alt);
559}
560
561static void jabber_keepalive(struct im_connection *ic)
562{
563        /* Just any whitespace character is enough as a keepalive for XMPP sessions. */
564        if (!jabber_write(ic, "\n", 1)) {
565                return;
566        }
567
568        /* This runs the garbage collection every minute, which means every packet
569           is in the cache for about a minute (which should be enough AFAIK). */
570        jabber_cache_clean(ic);
571}
572
573static int jabber_send_typing(struct im_connection *ic, char *who, int typing)
574{
575        struct jabber_data *jd = ic->proto_data;
576        struct jabber_buddy *bud;
577
578        /* Enable typing notification related code from now. */
579        jd->flags |= JFLAG_WANT_TYPING;
580
581        if ((bud = jabber_buddy_by_jid(ic, who, 0)) == NULL) {
582                /* Sending typing notifications to unknown buddies is
583                   unsupported for now. Shouldn't be a problem, I think. */
584                return 0;
585        }
586
587        if (bud->flags & JBFLAG_DOES_XEP85) {
588                /* We're only allowed to send this stuff if we know the other
589                   side supports it. */
590
591                struct xt_node *node;
592                char *type;
593                int st;
594
595                if (typing & OPT_TYPING) {
596                        type = "composing";
597                } else if (typing & OPT_THINKING) {
598                        type = "paused";
599                } else {
600                        type = "active";
601                }
602
603                node = xt_new_node(type, NULL, NULL);
604                xt_add_attr(node, "xmlns", XMLNS_CHATSTATES);
605                node = jabber_make_packet("message", "chat", bud->full_jid, node);
606
607                st = jabber_write_packet(ic, node);
608                xt_free_node(node);
609
610                return st;
611        }
612
613        return 1;
614}
615
616void jabber_chat_add_settings(account_t *acc, set_t **head)
617{
618        /* Meh. Stupid room passwords. Not trying to obfuscate/hide
619           them from the user for now. */
620        set_add(head, "password", NULL, NULL, NULL);
621}
622
623void jabber_chat_free_settings(account_t *acc, set_t **head)
624{
625        set_del(head, "password");
626}
627
628GList *jabber_buddy_action_list(bee_user_t *bu)
629{
630        static GList *ret = NULL;
631
632        if (ret == NULL) {
633                static const struct buddy_action ba[2] = {
634                        { "VERSION", "Get client (version) information" },
635                };
636
637                ret = g_list_prepend(ret, (void *) ba + 0);
638        }
639
640        return ret;
641}
642
643void *jabber_buddy_action(struct bee_user *bu, const char *action, char * const args[], void *data)
644{
645        if (g_strcasecmp(action, "VERSION") == 0) {
646                struct jabber_buddy *bud;
647
648                if ((bud = jabber_buddy_by_ext_jid(bu->ic, bu->handle, 0)) == NULL) {
649                        bud = jabber_buddy_by_jid(bu->ic, bu->handle, GET_BUDDY_FIRST);
650                }
651                for (; bud; bud = bud->next) {
652                        jabber_iq_version_send(bu->ic, bud, data);
653                }
654        }
655
656        return NULL;
657}
658
659gboolean jabber_handle_is_self(struct im_connection *ic, const char *who)
660{
661        struct jabber_data *jd = ic->proto_data;
662
663        return ((g_strcasecmp(who, ic->acc->user) == 0) ||
664                (jd->internal_jid &&
665                 g_strcasecmp(who, jd->internal_jid) == 0));
666}
667
668void jabber_initmodule()
669{
670        int i;
671        struct prpl funcs;
672
673        memset(&funcs, 0, sizeof(funcs));
674
675        funcs.mms = 0;                        /* no limit */
676        funcs.login = jabber_login;
677        funcs.init = jabber_init;
678        funcs.logout = jabber_logout;
679        funcs.buddy_msg = jabber_buddy_msg;
680        funcs.away_states = jabber_away_states;
681        funcs.set_away = jabber_set_away;
682        funcs.get_info = jabber_get_info;
683        funcs.add_buddy = jabber_add_buddy;
684        funcs.remove_buddy = jabber_remove_buddy;
685        funcs.chat_msg = jabber_chat_msg_;
686        funcs.chat_topic = jabber_chat_topic_;
687        funcs.chat_invite = jabber_chat_invite_;
688        funcs.chat_leave = jabber_chat_leave_;
689        funcs.chat_join = jabber_chat_join_;
690        funcs.chat_with = jabber_chat_with_;
691        funcs.chat_add_settings = jabber_chat_add_settings;
692        funcs.chat_free_settings = jabber_chat_free_settings;
693        funcs.keepalive = jabber_keepalive;
694        funcs.send_typing = jabber_send_typing;
695        funcs.handle_cmp = g_strcasecmp;
696        funcs.handle_is_self = jabber_handle_is_self;
697        funcs.transfer_request = jabber_si_transfer_request;
698        funcs.buddy_action_list = jabber_buddy_action_list;
699        funcs.buddy_action = jabber_buddy_action;
700
701        for (i = 0; jabber_subproto_list[i].name; i++) {
702                struct prpl *subproto = g_memdup(&funcs, sizeof(funcs));
703                subproto->name = jabber_subproto_list[i].name;
704                subproto->data = &jabber_subproto_list[i];
705                register_protocol(subproto);
706        }
707}
Note: See TracBrowser for help on using the repository browser.