blob: b975022455cfdd42ac1793986103444b751e2309 (
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();
int initialize();
int runStub();
int run();
enum class ServerStatus {
OK,
RequestError,
RequestIgnore, // required for StartTLS, premature answer
RequestRejected,
ClientDisconnected,
Timeout
};
private:
void prepareForNextRequest();
int argc;
char **argv;
bool stubMode;
ServerStatus serverStatus;
};
}
|