#ifndef CLIENT_H
#define CLIENT_H
#include "net.h"
struct smtp_reply;
struct client;
struct client_command_context;
struct client_state {
};
struct client {
char *session_id;
/* IMAP URLAUTH context (RFC4467) for BURL (RFC4468) */
};
extern struct client *submission_clients;
extern unsigned int submission_client_count;
struct mail_storage_service_user *service_user,
const struct submission_settings *set,
const char *helo,
const unsigned char *pdata,
unsigned int pdata_len);
const char *reason);
void clients_destroy_all(void);
#endif