File: ngx_http_lua_contentby.h

package info (click to toggle)
libnginx-mod-http-lua 1%3A0.10.23-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,104 kB
  • sloc: ansic: 40,872; perl: 452; sh: 261; python: 23; makefile: 12
file content (26 lines) | stat: -rw-r--r-- 782 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

/*
 * Copyright (C) Xiaozhe Wang (chaoslawful)
 * Copyright (C) Yichun Zhang (agentzh)
 */


#ifndef _NGX_HTTP_LUA_CONTENT_BY_H_INCLUDED_
#define _NGX_HTTP_LUA_CONTENT_BY_H_INCLUDED_


#include "ngx_http_lua_common.h"


ngx_int_t ngx_http_lua_content_by_chunk(lua_State *L, ngx_http_request_t *r);
void ngx_http_lua_content_wev_handler(ngx_http_request_t *r);
ngx_int_t ngx_http_lua_content_handler_file(ngx_http_request_t *r);
ngx_int_t ngx_http_lua_content_handler_inline(ngx_http_request_t *r);
ngx_int_t ngx_http_lua_content_handler(ngx_http_request_t *r);
ngx_int_t ngx_http_lua_content_run_posted_threads(lua_State *L,
    ngx_http_request_t *r, ngx_http_lua_ctx_t *ctx, int n);


#endif /* _NGX_HTTP_LUA_CONTENT_BY_H_INCLUDED_ */

/* vi:set ft=c ts=4 sw=4 et fdm=marker: */