Mercurial > pidgin
annotate plugins/perl/common/Connection.xs @ 8250:b248c1f4efbd
[gaim-migrate @ 8973]
1) Minor changes to the network listen code again. Tim, let me know
if you have any other suggestions.
2) Changed how charsets are handled in oscar a tad bit. I think this
should guarantee that Gaim doesn't crash when people send funky
messages, or have funky away messages or really anything that is
using a charset that isn't utf8, iso-8859-1, ucs-2be, or ascii.
Ethan, this should fix the problem with that person's away message.
Although, the message itself still looks kinda funky to me. The
encoding is Windows-31J, which is apparently a valid iconv encoding?
You would know more than I.
3) Fix the following crash:
1. IM yourself a message on AIM
2. Do NOT begin to type a second message, but instead hit CTRL+up
committer: Tailor Script <tailor@pidgin.im>
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Fri, 13 Feb 2004 05:37:12 +0000 |
| parents | 6deef41364bd |
| children | 134d0001983d |
| rev | line source |
|---|---|
| 6584 | 1 #include "module.h" |
| 2 | |
| 3 MODULE = Gaim::Connection PACKAGE = Gaim::Connection PREFIX = gaim_connection_ | |
| 4 PROTOTYPES: ENABLE | |
| 5 | |
| 6 void | |
| 7 gaim_connection_set_display_name(gc, name) | |
| 8 Gaim::Connection gc | |
| 9 const char *name | |
| 10 | |
| 11 Gaim::Account | |
| 12 gaim_connection_get_account(gc) | |
| 13 Gaim::Connection gc | |
| 14 | |
| 15 const char * | |
| 16 gaim_connection_get_display_name(gc) | |
| 17 Gaim::Connection gc | |
| 18 | |
| 19 | |
| 20 MODULE = Gaim::Connections PACKAGE = Gaim::Connections PREFIX = gaim_connections_ | |
| 21 PROTOTYPES: ENABLE | |
| 22 | |
| 23 void | |
| 24 gaim_connections_disconnect_all() | |
| 25 | |
| 26 void * | |
| 27 handle() | |
| 28 CODE: | |
| 29 RETVAL = gaim_connections_get_handle(); | |
| 30 OUTPUT: | |
| 31 RETVAL | |
| 32 | |
| 33 | |
| 34 MODULE = Gaim::Connection PACKAGE = Gaim | |
| 35 | |
| 36 void | |
| 37 connections() | |
| 38 PREINIT: | |
| 39 GList *l; | |
| 40 PPCODE: | |
| 41 for (l = gaim_connections_get_all(); l != NULL; l = l->next) | |
| 42 XPUSHs(sv_2mortal(gaim_perl_bless_object(l->data, "Gaim::Connection"))); |
