disco.h
author Myhailo Danylenko <isbear@ukrpost.net>
Mon, 20 Aug 2012 22:51:51 +0300
changeset 58 694833145b98
parent 32 14534d171215
permissions -rw-r--r--
Add a note about header


/* Copyright 2009,2010 Myhailo Danylenko
 *
 * Service discovery requests
 *
 * This file is part of mcabber-disco
 *
 * mcabber-disco 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, see <http://www.gnu.org/licenses/>. */

#ifndef MCABBER_DISCO_H
#define MCABBER_DISCO_H

#include <glib.h>

typedef struct {
	const gchar *category;
	const gchar *type;
	const gchar *reserved; // FIXME: look up in standard, what is fourth parameter
	const gchar *name;
} disco_identity_t;

typedef const gchar *disco_feature_t;

typedef struct {
	const gchar *jid;
	const gchar *name;
	const gchar *node;
} disco_item_t;

typedef void (*disco_info_handler_t) (GSList *identities, GSList *features, gpointer userdata);
typedef void (*disco_items_handler_t) (GSList *items, gpointer userdata);

gpointer disco_info_request   (const gchar *jid, const gchar *node, disco_info_handler_t  handler, gpointer userdata, GDestroyNotify notify);
gpointer disco_items_request  (const gchar *jid, const gchar *node, disco_items_handler_t handler, gpointer userdata, GDestroyNotify notify);
void     disco_cancel_request (gpointer id);

#endif