随心而动,随意而行.

没有理想的人和行尸走肉又有什么区别呢.

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

当所有数据都初始化完成,我们还需要做一些操作,调用函数:

ngx_module_t  ngx_tcp_con_module =
{
    NGX_MODULE_V1,
    &ngx_tcp_con_module_ctx,               /* module context */
    ngx_tcp_con_commands,                  /* module directives */
    NGX_HTTP_MODULE,                       /* module type */
    NULL,                                   /* init master */
    NULL,                                   /* init module */
    ngx_tcp_con_init_process,              /* init process */ 
    NULL,                                  /* init thread */
    NULL,                                  /* exit thread */
    NULL,                                  /* exit process */
    NULL,                                  /* exit master */
    NGX_MODULE_V1_PADDING
};

 

posted on 2014-05-16 11:37  随心而动,随意而行  阅读(570)  评论(0编辑  收藏  举报