2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
6 * Matt O'Gorman <mogorman@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
19 #ifndef _ASTERISK_JABBER_H
20 #define _ASTERISK_JABBER_H
23 #include "asterisk/astobj.h"
33 AJI_AUTOPRUNE = (1 << 0),
34 AJI_AUTOREGISTER = (1 << 1)
51 struct aji_capabilities *parent;
52 struct aji_version *next;
55 struct aji_capabilities {
57 struct aji_version *versions;
58 struct aji_capabilities *next;
64 char description[1000];
65 struct aji_version *cap;
67 struct aji_resource *next;
71 ASTOBJ_COMPONENTS(struct aji_buddy);
74 char pass[160]; /*For Transports*/
75 char server[160]; /*For Transports */
77 struct aji_resource *resources;
82 struct aji_buddy_container {
83 ASTOBJ_CONTAINER_COMPONENTS(struct aji_buddy);
86 struct aji_transport_container {
87 ASTOBJ_CONTAINER_COMPONENTS(struct aji_transport);
91 ASTOBJ_COMPONENTS(struct aji_client);
96 char statusmessage[256];
97 char sid[10]; /* Session ID */
98 char mid[6]; /* Message ID */
103 enum aji_state state;
114 enum aji_type component;
115 struct aji_buddy_container buddies;
120 struct aji_client_container{
121 ASTOBJ_CONTAINER_COMPONENTS(struct aji_client);
124 int ast_aji_send(struct aji_client *client, char *address, char *message);
125 int ast_aji_disconnect(struct aji_client *client);
126 int ast_aji_check_roster(void);
127 void ast_aji_increment_mid(char *mid);
128 int ast_aji_create_chat(struct aji_client *client,char *room, char *server, char *topic);
129 int ast_aji_invite_chat(struct aji_client *client, char *user, char *room, char *message);
130 int ast_aji_join_chat(struct aji_client *client,char *room);
131 struct aji_client *ast_aji_get_client(char *name);
132 struct aji_client_container *ast_aji_get_clients(void);