~spuul/nginx/trunk

« back to all changes in this revision

Viewing changes to debian/modules/nginx-lua/src/ngx_http_lua_clfactory.h

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-02-15 03:05:42 UTC
  • mfrom: (4.3.10 sid)
  • Revision ID: package-import@ubuntu.com-20140215030542-71ubtowl24vf7nfn
Tags: 1.4.5-1ubuntu1
* Resynchronise with Debian (LP: #1280511).  Remaining changes:
  - debian/patches/ubuntu-branding.patch:
    + Add Ubuntu branding to server_tokens.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#include "ngx_http_lua_common.h"
13
13
 
14
14
 
15
 
#define CLFACTORY_BEGIN_CODE "return function() "
16
 
#define CLFACTORY_BEGIN_SIZE (sizeof(CLFACTORY_BEGIN_CODE)-1)
17
 
 
18
 
#define CLFACTORY_END_CODE " end"
19
 
#define CLFACTORY_END_SIZE (sizeof(CLFACTORY_END_CODE)-1)
20
 
 
21
 
 
22
15
int ngx_http_lua_clfactory_loadfile(lua_State *L, const char *filename);
23
 
int ngx_http_lua_clfactory_loadstring(lua_State *L, const char *s);
24
16
int ngx_http_lua_clfactory_loadbuffer(lua_State *L, const char *buff,
25
17
    size_t size, const char *name);
26
18