a sandboxed Lua backend for FastCGI
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

16 lines
267 B

typedef struct {
char *listen;
int backlog;
int threads;
int sandbox;
size_t mem_max;
size_t output_max;
unsigned long cpu_usec;
unsigned long cpu_sec;
char *content_type;
} LF_config;
LF_config *LF_createconfig();
int LF_loadconfig(LF_config *, char *);