comparison src/imap/ngx_imap_proxy.c @ 413:de9d4726e28a

nginx-0.0.10-2004-08-31-23:05:39 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 31 Aug 2004 19:05:39 +0000
parents
children
comparison
equal deleted inserted replaced
412:199cd29f35a3 413:de9d4726e28a
1
2 #include <ngx_config.h>
3 #include <ngx_core.h>
4 #include <ngx_event.h>
5
6
7 static ngx_command_t ngx_imap_commands[] = {
8
9 { ngx_string("imap"),
10 NGX_MAIN_CONF|NGX_CONF_BLOCK|NGX_CONF_NOARGS,
11 ngx_imap_block,
12 0,
13 0,
14 NULL },
15
16 ngx_null_command
17 };
18
19
20 static ngx_core_module_t ngx_imap_module_ctx = {
21 ngx_string("imap"),
22 NULL,
23 NULL
24 };
25
26
27 ngx_module_t ngx_imap_module = {
28 NGX_MODULE,
29 &ngx_imap_module_ctx, /* module context */
30 ngx_imap_commands, /* module directives */
31 NGX_CORE_MODULE, /* module type */
32 NULL, /* init module */
33 NULL /* init child */
34 };