Mercurial > pidgin
annotate src/protocols/gg/confer.h @ 13967:99b9b58b19dd
[gaim-migrate @ 16523]
Fix a crazy MSN crash. Basically it's possible to have more than one
slplink associated with a given switchboard, but our code did not
allow for that. I think it happens when you're in a multi-user
chat and you do stuff with multiple users that involves slplinks.
Like maybe file transfer and buddy icon related stuff.
Tracking this down took an ungodly amount of time, but thanks to
Meebo for letting me do it :-)
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 20 Jul 2006 07:31:15 +0000 |
parents | 8724718d387f |
children |
rev | line source |
---|---|
11414 | 1 /** |
2 * @file confer.h | |
3 * | |
4 * gaim | |
5 * | |
6 * Copyright (C) 2005 Bartosz Oler <bartosz@bzimage.us> | |
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 | |
23 | |
24 #ifndef _GAIM_GG_CONFER_H | |
25 #define _GAIM_GG_CONFER_H | |
26 | |
27 #include "gg.h" | |
28 | |
29 /** | |
30 * Finds a CHAT conversation for the current account with the specified name. | |
31 * | |
32 * @param gc GaimConnection instance. | |
33 * @param name Name of the conversation. | |
34 * | |
35 * @return GaimConversation or NULL if not found. | |
36 */ | |
37 GaimConversation * | |
38 ggp_confer_find_by_name(GaimConnection *gc, const gchar *name); | |
39 | |
40 /** | |
41 * Adds the specified UIN to the specified conversation. | |
42 * | |
43 * @param gc GaimConnection. | |
44 * @param chat_name Name of the conversation. | |
45 */ | |
46 void | |
12007
8724718d387f
[gaim-migrate @ 14300]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11414
diff
changeset
|
47 ggp_confer_participants_add_uin(GaimConnection *gc, const gchar *chat_name, |
8724718d387f
[gaim-migrate @ 14300]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11414
diff
changeset
|
48 const uin_t uin); |
11414 | 49 |
50 /** | |
51 * Add the specified UINs to the specified conversation. | |
52 * | |
53 * @param gc GaimConnection. | |
54 * @param chat_name Name of the conversation. | |
55 * @param recipients List of the UINs. | |
56 * @param count Number of the UINs. | |
57 */ | |
58 void | |
59 ggp_confer_participants_add(GaimConnection *gc, const gchar *chat_name, | |
12007
8724718d387f
[gaim-migrate @ 14300]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11414
diff
changeset
|
60 const uin_t *recipients, int count); |
11414 | 61 |
62 /** | |
63 * Finds a conversation in which all the specified recipients participate. | |
64 * | |
65 * TODO: This function should be rewritten to better handle situations when | |
66 * somebody adds more people to the converation. | |
67 * | |
68 * @param gc GaimConnection. | |
69 * @param recipients List of the people in the conversation. | |
70 * @param count Number of people. | |
71 * | |
72 * @return Name of the conversation. | |
73 */ | |
74 const char* | |
12007
8724718d387f
[gaim-migrate @ 14300]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11414
diff
changeset
|
75 ggp_confer_find_by_participants(GaimConnection *gc, const uin_t *recipients, |
8724718d387f
[gaim-migrate @ 14300]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11414
diff
changeset
|
76 int count); |
11414 | 77 |
78 /** | |
79 * Adds a new conversation to the internal list of conversations. | |
80 * If name is NULL then it will be automagically generated. | |
81 * | |
82 * @param gc GaimConnection. | |
83 * @param name Name of the conversation. | |
84 * | |
85 * @return Name of the conversation. | |
86 */ | |
87 const char* | |
88 ggp_confer_add_new(GaimConnection *gc, const char *name); | |
89 | |
90 | |
91 #endif /* _GAIM_GG_CONFER_H */ | |
92 | |
12007
8724718d387f
[gaim-migrate @ 14300]
Daniel Atallah <daniel.atallah@gmail.com>
parents:
11414
diff
changeset
|
93 /* vim: set ts=8 sts=0 sw=8 noet: */ |