Mercurial > pidgin
annotate src/server.h @ 10038:eb8ccdd6f5f2
[gaim-migrate @ 10997]
" Fix Philip Mucci's bug (reported to gaim-devel on the
16th), where malformed (visibility) strings, caused
users to be unmessageable and hidden, by normalizing
them, and using sane defaults.
Fixes CraigD's bug IRC reported on IRC (non-kerberized
zephyr users always have the realm "local-realm"), by
adding a user-specified "Realm" option string.
Also added two new preferences (import from .anyone and
import from .zephyr.subs) to go with (export to .anyone
and "export to .zephyr.subs"). Since one can now use
multiple accounts, most people wouldn't want to use the
same buddy lists and chat room lists for both accounts.
Added a /topic command to make zephyr use the same
command name as the other protocols which have topics." --Arun A Tharuvai
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Sat, 18 Sep 2004 22:25:12 +0000 |
| parents | 32467b63f55a |
| children | 6a043ae92db6 |
| rev | line source |
|---|---|
| 5872 | 1 /** |
| 2 * @file server.h Server API | |
| 3 * @ingroup core | |
| 4 * | |
| 5 * gaim | |
| 6 * | |
| 8046 | 7 * Gaim is the legal property of its developers, whose names are too numerous |
| 8 * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 9 * source distribution. | |
|
6787
faa491042c66
[gaim-migrate @ 7326]
Christian Hammond <chipx86@chipx86.com>
parents:
6695
diff
changeset
|
10 * |
| 5872 | 11 * This program is free software; you can redistribute it and/or modify |
| 12 * it under the terms of the GNU General Public License as published by | |
| 13 * the Free Software Foundation; either version 2 of the License, or | |
| 14 * (at your option) any later version. | |
| 15 * | |
| 16 * This program is distributed in the hope that it will be useful, | |
| 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 * GNU General Public License for more details. | |
| 20 * | |
| 21 * You should have received a copy of the GNU General Public License | |
| 22 * along with this program; if not, write to the Free Software | |
| 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 */ | |
| 25 #ifndef _GAIM_SERVER_H_ | |
| 26 #define _GAIM_SERVER_H_ | |
| 27 | |
| 28 #include "account.h" | |
| 29 #include "conversation.h" | |
| 9718 | 30 #include "prpl.h" |
| 5872 | 31 |
|
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
32 #ifdef __cplusplus |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
33 extern "C" { |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
34 #endif |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
35 |
| 5872 | 36 void serv_login(GaimAccount *); |
| 37 void serv_close(GaimConnection *); | |
| 38 void serv_touch_idle(GaimConnection *); | |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7032
diff
changeset
|
39 int serv_send_im(GaimConnection *, const char *, const char *, GaimConvImFlags); |
| 6059 | 40 void serv_get_info(GaimConnection *, const char *); |
| 41 void serv_get_dir(GaimConnection *, const char *); | |
| 5872 | 42 void serv_set_idle(GaimConnection *, int); |
| 5954 | 43 void serv_set_info(GaimConnection *, const char *); |
| 6059 | 44 int serv_send_typing(GaimConnection *, const char *, int); |
| 5872 | 45 void serv_change_passwd(GaimConnection *, const char *, const char *); |
| 9285 | 46 void serv_add_buddy(GaimConnection *, GaimBuddy *); |
| 5872 | 47 void serv_add_buddies(GaimConnection *, GList *); |
| 9285 | 48 void serv_remove_buddy(GaimConnection *, GaimBuddy *, GaimGroup *); |
| 49 void serv_remove_buddies(GaimConnection *, GList *, GList *); | |
| 50 void serv_remove_group(GaimConnection *, GaimGroup *); | |
| 51 void serv_move_buddy(GaimBuddy *, GaimGroup *, GaimGroup *); | |
| 52 void serv_rename_group(GaimConnection *, const char *, GaimGroup *, GList *); | |
| 5872 | 53 void serv_add_permit(GaimConnection *, const char *); |
| 54 void serv_add_deny(GaimConnection *, const char *); | |
| 55 void serv_rem_permit(GaimConnection *, const char *); | |
| 56 void serv_rem_deny(GaimConnection *, const char *); | |
| 57 void serv_set_permit_deny(GaimConnection *); | |
| 9753 | 58 void serv_warn(GaimConnection *, const char *, gboolean); |
| 5872 | 59 void serv_set_dir(GaimConnection *, const char *, const char *, |
| 60 const char *, const char *, const char *, | |
| 61 const char *, const char *, int); | |
| 62 void serv_dir_search(GaimConnection *, const char *, const char *, | |
| 63 const char *, const char *, const char *, const char *, | |
| 64 const char *, const char *); | |
| 65 void serv_join_chat(GaimConnection *, GHashTable *); | |
| 8562 | 66 void serv_reject_chat(GaimConnection *, GHashTable *); |
| 5872 | 67 void serv_chat_invite(GaimConnection *, int, const char *, const char *); |
| 68 void serv_chat_leave(GaimConnection *, int); | |
| 6059 | 69 void serv_chat_whisper(GaimConnection *, int, const char *, const char *); |
| 70 int serv_chat_send(GaimConnection *, int, const char *); | |
| 6695 | 71 void serv_alias_buddy(GaimBuddy *); |
| 5872 | 72 void serv_got_alias(GaimConnection *gc, const char *who, const char *alias); |
| 73 void serv_got_typing(GaimConnection *gc, const char *name, int timeout, | |
| 74 GaimTypingState state); | |
| 75 void serv_set_buddyicon(GaimConnection *gc, const char *filename); | |
| 76 void serv_got_typing_stopped(GaimConnection *gc, const char *name); | |
| 77 void serv_got_im(GaimConnection *gc, const char *who, const char *msg, | |
|
7118
bf630f7dfdcd
[gaim-migrate @ 7685]
Christian Hammond <chipx86@chipx86.com>
parents:
7032
diff
changeset
|
78 GaimConvImFlags imflags, time_t mtime); |
| 5872 | 79 void serv_finish_login(GaimConnection *gc); |
| 80 void serv_got_chat_invite(GaimConnection *gc, const char *name, | |
| 81 const char *who, const char *message, | |
| 82 GHashTable *data); | |
| 83 GaimConversation *serv_got_joined_chat(GaimConnection *gc, | |
| 84 int id, const char *name); | |
| 85 void serv_got_chat_left(GaimConnection *g, int id); | |
| 6059 | 86 void serv_got_chat_in(GaimConnection *g, int id, const char *who, |
| 9584 | 87 GaimConvChatFlags chatflags, const char *message, time_t mtime); |
| 9466 | 88 void serv_send_file(GaimConnection *gc, const char *who, const char *file); |
| 5872 | 89 |
|
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
90 #ifdef __cplusplus |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
91 } |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
92 #endif |
|
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5872
diff
changeset
|
93 |
| 5872 | 94 #endif /* _GAIM_SERVER_H_ */ |
