Deleted
Added
nxt_conf.c (383:2c566653d774) | nxt_conf.c (507:fa714d76592b) |
---|---|
1 2/* 3 * Copyright (C) Igor Sysoev 4 * Copyright (C) Valentin V. Bartenev 5 * Copyright (C) NGINX, Inc. 6 */ 7 8#include <nxt_main.h> --- 149 unchanged lines hidden (view full) --- 158 159 } else { 160 str->length = value->u.string.length; 161 str->start = value->u.string.start; 162 } 163} 164 165 | 1 2/* 3 * Copyright (C) Igor Sysoev 4 * Copyright (C) Valentin V. Bartenev 5 * Copyright (C) NGINX, Inc. 6 */ 7 8#include <nxt_main.h> --- 149 unchanged lines hidden (view full) --- 158 159 } else { 160 str->length = value->u.string.length; 161 str->start = value->u.string.start; 162 } 163} 164 165 |
166int64_t 167nxt_conf_get_integer(nxt_conf_value_t *value) 168{ 169 return value->u.integer; 170} 171 172 |
|
166nxt_uint_t 167nxt_conf_object_members_count(nxt_conf_value_t *value) 168{ 169 return value->u.object->count; 170} 171 172 173nxt_conf_value_t * --- 2152 unchanged lines hidden --- | 173nxt_uint_t 174nxt_conf_object_members_count(nxt_conf_value_t *value) 175{ 176 return value->u.object->count; 177} 178 179 180nxt_conf_value_t * --- 2152 unchanged lines hidden --- |