view src/pop3-login/client.h @ 11982:c27bca966b54

login proxy: Show proxy state in "disconnected" error message.
author Timo Sirainen <tss@iki.fi>
date Thu, 12 Aug 2010 15:30:08 +0100
parents 097588a7903c
children e456e1bce47f 35ed77dd500e
line wrap: on
line source

#ifndef CLIENT_H
#define CLIENT_H

#include "network.h"
#include "client-common.h"
#include "auth-client.h"

enum pop3_proxy_state {
	POP3_PROXY_BANNER = 0,
	POP3_PROXY_STARTTLS,
	POP3_PROXY_LOGIN1,
	POP3_PROXY_LOGIN2
};

struct pop3_client {
	struct client common;

	char *last_user;
	char *apop_challenge;
	unsigned int apop_server_pid, apop_connect_uid;
};

#endif