Tue, 13 Jan 2004 00:03:27 +0000
[gaim-migrate @ 8785]
let people enable plain authentication over unencrypted channels if they
really want to. and plug a memory leak in said authentication scheme.
| 7014 | 1 | /** |
| 2 | * @file buddy.h Buddy handlers | |
| 3 | * | |
| 4 | * gaim | |
| 5 | * | |
| 6 | * Copyright (C) 2003 Nathan Walp <faceprint@faceprint.com> | |
| 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 | |
| 19 | * along with this program; if not, write to the Free Software | |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 21 | */ | |
| 22 | #ifndef _GAIM_JABBER_BUDDY_H_ | |
| 23 | #define _GAIM_JABBER_BUDDY_H_ | |
| 24 | ||
| 25 | #include "jabber.h" | |
| 26 | ||
| 27 | typedef struct _JabberBuddy { | |
| 28 | GList *resources; | |
| 29 | char *error_msg; | |
| 30 | enum { | |
| 31 | JABBER_INVISIBLE_NONE = 0, | |
| 32 | JABBER_INVISIBLE_SERVER = 1 << 1, | |
| 33 | JABBER_INVIS_BUDDY = 1 << 2 | |
| 34 | } invisible; | |
| 35 | enum { | |
| 36 | JABBER_SUB_NONE = 0, | |
| 37 | JABBER_SUB_PENDING = 1 << 1, | |
| 38 | JABBER_SUB_TO = 1 << 2, | |
| 39 | JABBER_SUB_FROM = 1 << 3, | |
| 40 | JABBER_SUB_BOTH = (JABBER_SUB_TO | JABBER_SUB_FROM) | |
| 41 | } subscription; | |
| 42 | } JabberBuddy; | |
| 43 | ||
| 7116 | 44 | typedef struct _JabberBuddyResource { |
| 45 | JabberBuddy *jb; | |
| 46 | char *name; | |
| 47 | int priority; | |
| 48 | int state; | |
| 49 | char *status; | |
| 50 | enum { | |
| 7395 | 51 | JABBER_CAP_XHTML = 1 << 1, |
| 52 | JABBER_CAP_COMPOSING = 1 << 2, | |
| 53 | JABBER_CAP_SI = 1 << 3, | |
| 54 | JABBER_CAP_SI_FILE_XFER = 1 << 4, | |
| 55 | JABBER_CAP_BYTESTREAMS = 1 << 5 | |
| 7116 | 56 | } capabilities; |
| 57 | } JabberBuddyResource; | |
| 58 | ||
| 59 | void jabber_buddy_free(JabberBuddy *jb); | |
| 7014 | 60 | JabberBuddy *jabber_buddy_find(JabberStream *js, const char *name, |
| 61 | gboolean create); | |
| 62 | JabberBuddyResource *jabber_buddy_find_resource(JabberBuddy *jb, | |
| 63 | const char *resource); | |
| 64 | void jabber_buddy_track_resource(JabberBuddy *jb, const char *resource, | |
| 65 | int priority, int state, const char *status); | |
| 7116 | 66 | void jabber_buddy_resource_free(JabberBuddyResource *jbr); |
| 7014 | 67 | void jabber_buddy_remove_resource(JabberBuddy *jb, const char *resource); |
| 68 | const char *jabber_buddy_get_status_msg(JabberBuddy *jb); | |
| 69 | void jabber_buddy_get_info(GaimConnection *gc, const char *who); | |
| 70 | void jabber_buddy_get_info_chat(GaimConnection *gc, int id, | |
| 71 | const char *resource); | |
| 72 | ||
| 73 | GList *jabber_buddy_menu(GaimConnection *gc, const char *name); | |
| 74 | ||
| 75 | void jabber_set_info(GaimConnection *gc, const char *info); | |
| 76 | void jabber_setup_set_info(GaimConnection *gc); | |
| 77 | ||
| 78 | #endif /* _GAIM_JABBER_BUDDY_H_ */ |