annotate src/protocols/msn/nexus.h @ 8958:60a47725df97
[gaim-migrate @ 9732]
" I tried to send myself some test mail with the subject
Subject: =?Big5?Q?=B4=FA=B8=D5?=
(Chinese for "test"). Gaim, however, displays the
following notification:
Subject: msnB4=FA=B8=D5?=
I tried to partially rewrite gaim_mime_decode_field in
util.c to fix this problem; the results of the rewrite
is attached.
I have tested this and it should work correctly.
(This does not fix the MSN mail notification crashes,
however.)" --Ambrose C. LI
committer: Tailor Script <tailor@pidgin.im>
author |
Luke Schierer <lschiere@pidgin.im> |
date |
Mon, 17 May 2004 02:00:17 +0000 |
parents |
143d0b29ba82 |
children |
502707ca1836 |
rev |
line source |
8171
|
1 #ifndef _MSN_NEXUS_H_
|
|
2 #define _MSN_NEXUS_H_
|
|
3
|
|
4 typedef struct _MsnNexus MsnNexus;
|
|
5
|
|
6 #include "session.h"
|
|
7
|
|
8 struct _MsnNexus
|
|
9 {
|
|
10 MsnSession *session;
|
|
11
|
|
12 char *login_host;
|
|
13 char *login_path;
|
|
14 GHashTable *challenge_data;
|
|
15 };
|
|
16
|
|
17 void msn_nexus_connect(MsnNexus *nexus);
|
|
18 MsnNexus *msn_nexus_new(MsnSession *session);
|
|
19 void msn_nexus_destroy(MsnNexus *nexus);
|
|
20
|
8386
|
21 #endif /* _MSN_NEXUS_H_ */
|