view libgaim/protocols/jabber/xdata.h @ 15261:b5dff06f9c84

[gaim-migrate @ 18051] Fixed retrieval of the roster for non-Google Talk Jabber accounts, which was broken in [17993]. This does not entirely fix the problem for such accounts, however; the roster is retrieved *after* we're told of presence for most/all of the roster. If GaimBuddy objects are not already created -- the blist.xml file was deleted, to pick a completely random example -- then such presence information is simply dropped, because jabber_presence_parse() uses gaim_find_buddy() and returns immediately if the buddy can't be found. committer: Tailor Script <tailor@pidgin.im>
author Evan Schoenberg <evan.s@dreskin.net>
date Mon, 25 Dec 2006 06:01:33 +0000
parents 60b1bc8dbf37
children
line wrap: on
line source

/**
 * @file xdata.h utility functions
 *
 * gaim
 *
 * Copyright (C) 2003 Nathan Walp <faceprint@faceprint.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
#ifndef _GAIM_JABBER_XDATA_H_
#define _GAIM_JABBER_XDATA_H_

#include "jabber.h"
#include "xmlnode.h"

typedef void (*jabber_x_data_cb)(JabberStream *js, xmlnode *result, gpointer user_data);
void *jabber_x_data_request(JabberStream *js, xmlnode *packet, jabber_x_data_cb cb, gpointer user_data);

#endif /* _GAIM_JABBER_XDATA_H_ */