blob: 2afaaddd371fca348c2de066e987d19f5fe9d57c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/**
* @file imapserver.h
* @brief Declaration of the IMAPServer class.
* @author Andreas Aardal Hanssen
* @date 2002-2005
*/
namespace Binc {
class IMAPServer {
public:
IMAPServer(int argc, char *argv[]);
~IMAPServer(void);
int initialize(void);
int runStub(void);
int run(void);
enum ServerStatus {
OK,
RequestError,
RequestIgnore, // required for StartTLS, premature answer
RequestRejected,
ClientDisconnected,
Timeout
};
private:
void prepareForNextRequest(void);
int argc;
char **argv;
bool stubMode;
ServerStatus serverStatus;
};
}
|