1 
2 /*
3  * Copyright (C) Xiaozhe Wang (chaoslawful)
4  * Copyright (C) Yichun Zhang (agentzh)
5  */
6 
7 
8 #ifndef _NGX_HTTP_LUA_CTX_H_INCLUDED_
9 #define _NGX_HTTP_LUA_CTX_H_INCLUDED_
10 
11 
12 #include "ngx_http_lua_common.h"
13 
14 
15 int ngx_http_lua_ngx_set_ctx_helper(lua_State *L, ngx_http_request_t *r,
16     ngx_http_lua_ctx_t *ctx, int index);
17 
18 
19 #endif /* _NGX_HTTP_LUA_CTX_H_INCLUDED_ */
20 
21 /* vi:set ft=c ts=4 sw=4 et fdm=marker: */
22