summaryrefslogtreecommitdiffhomepage
path: root/src/imap/ngx_imap.h
blob: 6f5307d3d5c62ea8b3587919f6fc9878b4136ace (plain) (blame)
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
38
39
40
41
42
43
#ifndef _NGX_IMAP_H_INCLUDED_
#define _NGX_IMAP_H_INCLUDED_


#include <ngx_config.h>
#include <ngx_core.h>


typedef struct {
    ngx_connection_t      *connection;

    ngx_buf_t             *downstream_buffer;
    ngx_buf_t             *upstream_buffer;
} ngx_imap_proxy_ctx_t;


typedef struct {
    uint32_t               signature;         /* "IMAP" */

    ngx_connection_t      *connection;
    ngx_imap_proxy_ctx_t  *proxy;
} ngx_imap_session_t;


#define NGX_POP3_USER      1
#define NGX_POP3_PASS      2
#define NGX_POP3_APOP      3
#define NGX_POP3_STAT      4
#define NGX_POP3_LIST      5
#define NGX_POP3_RETR      6
#define NGX_POP3_DELE      7
#define NGX_POP3_NOOP      8
#define NGX_POP3_RSET      9
#define NGX_POP3_TOP       10
#define NGX_POP3_UIDL      11
#define NGX_POP3_QUIT      12


void ngx_imap_init_connection(ngx_connection_t *c);
void ngx_imap_close_connection(ngx_connection_t *c);


#endif /* _NGX_IMAP_H_INCLUDED_ */