comparison src/event/modules/ngx_aio_module.c @ 96:a23d010f356d

nginx-0.0.1-2003-05-27-16:18:54 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 27 May 2003 12:18:54 +0000
parents b48066122884
children ac69ab96328d
comparison
equal deleted inserted replaced
95:b48066122884 96:a23d010f356d
27 27
28 28
29 static ngx_str_t aio_name = ngx_string("aio"); 29 static ngx_str_t aio_name = ngx_string("aio");
30 30
31 ngx_event_module_t ngx_aio_module_ctx = { 31 ngx_event_module_t ngx_aio_module_ctx = {
32 NGX_EVENT_MODULE,
33 &aio_name, 32 &aio_name,
34 NULL, /* create configuration */ 33 NULL, /* create configuration */
35 NULL, /* init configuration */ 34 NULL, /* init configuration */
36 35
37 { 36 {
47 } 46 }
48 47
49 }; 48 };
50 49
51 ngx_module_t ngx_aio_module = { 50 ngx_module_t ngx_aio_module = {
51 NGX_MODULE,
52 &ngx_aio_module_ctx, /* module context */ 52 &ngx_aio_module_ctx, /* module context */
53 0, /* module index */
54 NULL, /* module directives */ 53 NULL, /* module directives */
55 NGX_EVENT_MODULE_TYPE, /* module type */ 54 NGX_EVENT_MODULE, /* module type */
56 NULL /* init module */ 55 NULL /* init module */
57 }; 56 };
58 57
59 58
60 59