comparison src/imap/ngx_imap.h @ 417:0526206251f6

nginx-0.0.10-2004-09-07-19:29:22 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 07 Sep 2004 15:29:22 +0000
parents
children cf072d26d6d6
comparison
equal deleted inserted replaced
416:b9bd635011de 417:0526206251f6
1 #ifndef _NGX_IMAP_H_INCLUDED_
2 #define _NGX_IMAP_H_INCLUDED_
3
4
5 #include <ngx_config.h>
6 #include <ngx_core.h>
7
8
9 typedef struct {
10 ngx_chain_t *send;
11 } ngx_imap_request_t;
12
13
14 #define NGX_POP3_USER 1
15 #define NGX_POP3_PASS 2
16 #define NGX_POP3_APOP 3
17 #define NGX_POP3_STAT 4
18 #define NGX_POP3_LIST 5
19 #define NGX_POP3_RETR 6
20 #define NGX_POP3_DELE 7
21 #define NGX_POP3_NOOP 8
22 #define NGX_POP3_RSET 9
23 #define NGX_POP3_TOP 10
24 #define NGX_POP3_UIDL 11
25 #define NGX_POP3_QUIT 12
26
27
28 void ngx_imap_init_connection(ngx_connection_t *c);
29 void ngx_imap_close_connection(ngx_connection_t *c);
30
31
32 #endif /* _NGX_IMAP_H_INCLUDED_ */