view src/protocols/msn/nexus.h @ 9197:ec417d2f9666

[gaim-migrate @ 9992] Prevent a "(null)" from displaying when we get an "ADD" for the RL list by explicitly setting the friendly name. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 06 Jun 2004 03:30:20 +0000
parents 502707ca1836
children ab6636c5a136
line wrap: on
line source

#ifndef _MSN_NEXUS_H_
#define _MSN_NEXUS_H_

typedef struct _MsnNexus MsnNexus;

#include "nexus.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_ */