view src/protocols/msn/nexus.h @ 8646:1e211dde3cae

[gaim-migrate @ 9398] Added a patch by shx to clean up the message-handling code and split the command stuff from it, among a few other things. Also, I fixed a crash in message parsing, which I think may close a couple bug reports. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 13 Apr 2004 04:08:22 +0000
parents 143d0b29ba82
children 502707ca1836
line wrap: on
line source

#ifndef _MSN_NEXUS_H_
#define _MSN_NEXUS_H_

typedef struct _MsnNexus MsnNexus;

#include "session.h"

struct _MsnNexus
{
	MsnSession *session;

	char *login_host;
	char *login_path;
	GHashTable *challenge_data;
};

void msn_nexus_connect(MsnNexus *nexus);
MsnNexus *msn_nexus_new(MsnSession *session);
void msn_nexus_destroy(MsnNexus *nexus);

#endif /* _MSN_NEXUS_H_ */