#if (NDK_UPSTREAM_LIST_CMDS) | |
// TODO : use the generated commands | |
{ | |
ngx_string ("upstream_list"), | |
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_CONF_2MORE, | |
ndk_upstream_list, | |
0, | |
0, | |
NULL | |
}, | |
#else | |
typedef struct { | |
ngx_str_t **elts; | |
ngx_uint_t nelts; | |
ngx_str_t name; | |
} ndk_upstream_list_t; | |
ndk_upstream_list_t * | |
ndk_get_upstream_list (ndk_http_main_conf_t *mcf, u_char *data, size_t len); | |
#endif |