JSON parsing in controller.

This commit is contained in:
Valentin Bartenev
2017-04-10 17:06:22 +03:00
parent 3b8963da4d
commit bf401fa544
4 changed files with 823 additions and 14 deletions

19
src/nxt_conf.h Normal file
View File

@@ -0,0 +1,19 @@
/*
* Copyright (C) Igor Sysoev
* Copyright (C) Valentin V. Bartenev
* Copyright (C) NGINX, Inc.
*/
#ifndef _NXT_CONF_INCLUDED_
#define _NXT_CONF_INCLUDED_
typedef struct nxt_conf_json_value_s nxt_conf_json_value_t;
nxt_conf_json_value_t *nxt_conf_json_parse(nxt_buf_mem_t *b,
nxt_mem_pool_t *pool);
#endif /* _NXT_CONF_INCLUDED_ */