Go to the source code of this file.
Data Structures | |
| struct | asyncop_t |
| the state of the async operation More... | |
| struct | popserver_functions_t |
| These functions are called by the pop3 server. More... | |
Error codes | |
| #define | POPSERVER_ERR_OK 0 |
| #define | POPSERVER_ERR_SYNTAX 1 |
| #define | POPSERVER_ERR_NETWORK 2 |
| #define | POPSERVER_ERR_AUTH 3 |
| #define | POPSERVER_ERR_INTERNAL 4 |
| #define | POPSERVER_ERR_NOMSG 5 |
| #define | POPSERVER_ERR_LOCKED 6 |
| #define | POPSERVER_ERR_EOF 7 |
| #define | POPSERVER_ERR_TOOFAST 8 |
| #define | POPSERVER_ERR_UNKNOWN 9 |
Features flags | |
| #define | POPSERVER_FLAG_STANDARD 0 |
| #define | POPSERVER_FLAG_NOTOP 1 |
Defines | |
| #define | uid_t int |
| #define | gid_t int |
Enumerations | |
| enum | asyncstate_e { ASYNCOP_NEW, ASYNCOP_OLD } |
| the state of an async operation More... | |
Functions | |
| void | popserver_start (struct popserver_functions_t *f, struct in_addr address, unsigned short port, int maxthreads, int(*set_rights)(uid_t, gid_t), uid_t uid, gid_t gid, int flag) |
| Starts a pop3 server that uses functions in f and listens on port port. | |
>Definition in file popserver.h.
|
|
Definition at line 26 of file popserver.h. |
|
|
Definition at line 56 of file popserver.h. |
|
|
Definition at line 60 of file popserver.h. |
|
|
Definition at line 57 of file popserver.h. |
|
|
Definition at line 59 of file popserver.h. |
|
|
Definition at line 55 of file popserver.h. |
|
|
Definition at line 58 of file popserver.h. |
|
|
Definition at line 53 of file popserver.h. |
|
|
Definition at line 54 of file popserver.h. |
|
|
Definition at line 61 of file popserver.h. |
|
|
Definition at line 62 of file popserver.h. |
|
|
Definition at line 68 of file popserver.h. |
|
|
Definition at line 67 of file popserver.h. |
|
|
Definition at line 25 of file popserver.h. |
|
|
the state of an async operation
Definition at line 32 of file popserver.h.
00032 {ASYNCOP_NEW,ASYNCOP_OLD};
|
|
||||||||||||||||||||||||||||||||||||
|
Starts a pop3 server that uses functions in f and listens on port port.
|
1.3.6-20040222