view src/imap-login/client.h @ 2097:4e77cb0aff21 HEAD

Added %l, %r and %P variables and mail_log_prefix setting.
author Timo Sirainen <tss@iki.fi>
date Mon, 31 May 2004 21:04:46 +0300
parents 4d0834aaa365
children 46f879c46b45
line wrap: on
line source

#ifndef __CLIENT_H
#define __CLIENT_H

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

struct imap_client {
	struct client common;

	time_t created;
	int refcount;

	struct istream *input;
	struct ostream *output;
	struct imap_parser *parser;

	time_t last_input;
	unsigned int bad_counter;

	const char *cmd_tag, *cmd_name;

	unsigned int tls:1;
	unsigned int secured:1;
	unsigned int cmd_finished:1;
	unsigned int skip_line:1;
	unsigned int input_blocked:1;
	unsigned int authenticating:1;
	unsigned int destroyed:1;
};

void client_destroy(struct imap_client *client, const char *reason);

void client_send_line(struct imap_client *client, const char *line);
void client_send_tagline(struct imap_client *client, const char *line);
void client_syslog(struct imap_client *client, const char *text);

int client_read(struct imap_client *client);
void client_input(void *context);

void client_ref(struct imap_client *client);
int client_unref(struct imap_client *client);

void clients_init(void);
void clients_deinit(void);

#endif