comparison src/protocols/msn/nexus.h @ 8171:d0ba2f7b40e7

[gaim-migrate @ 8884] Committing one of shx's MSN patches, which splits off the Nexus connection code into nexus.[ch] and cleans it up a bit. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 27 Jan 2004 04:46:05 +0000
parents
children 143d0b29ba82
comparison
equal deleted inserted replaced
8170:9d1a984681fe 8171:d0ba2f7b40e7
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
21 #endif // _MSN_NEXUS_H_