view src/pop3-login/client.h @ 22638:7d5634889da8

lib: net_ip2addr() - Optimize by allocating destination memory immediately It doesn't really matter if we allocate a few extra bytes.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Sat, 04 Nov 2017 01:42:37 +0200
parents 685240c1a19b
children
line wrap: on
line source

#ifndef CLIENT_H
#define CLIENT_H

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

enum pop3_proxy_state {
	POP3_PROXY_BANNER = 0,
	POP3_PROXY_STARTTLS,
	POP3_PROXY_XCLIENT,
	POP3_PROXY_LOGIN1,
	POP3_PROXY_LOGIN2,

	POP3_PROXY_STATE_COUNT
};

struct pop3_client {
	struct client common;

	char *last_user;
	char *apop_challenge;
	unsigned int apop_server_pid, apop_connect_uid;
	enum pop3_proxy_state proxy_state;
	bool proxy_xclient;
};

enum pop3_cmd_reply {
	POP3_CMD_REPLY_OK,
	POP3_CMD_REPLY_ERROR,
	POP3_CMD_REPLY_AUTH_ERROR,
	POP3_CMD_REPLY_TEMPFAIL
};

void client_send_reply(struct client *client, enum pop3_cmd_reply reply,
		       const char *text);

#endif