client.h revision 3612ee5c737954d5fb88fd1775aad80f7bf1dc4e
#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,
};
struct pop3_client {
char *last_user;
char *apop_challenge;
unsigned int apop_server_pid, apop_connect_uid;
};
#endif