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

  1. typedef struct {
  2. char *listen;
  3. int backlog;
  4. int threads;
  5. int sandbox;
  6. size_t mem_max;
  7. size_t output_max;
  8. unsigned long cpu_usec;
  9. unsigned long cpu_sec;
  10. char *content_type;
  11. } LF_config;
  12. LF_config *LF_createconfig();
  13. int LF_loadconfig(LF_config *, char *);