Style: NGX_PTR_SIZE replaced with sizeof(void *).
The NGX_PTR_SIZE macro is only needed in preprocessor directives where
it's not possible to use sizeof().
Maxim Dounin
6 years ago
3502 | 3502 |
/* TODO: it does not merge, it inits only */
|
3503 | 3503 |
|
3504 | 3504 |
ngx_conf_merge_size_value(conf->connection_pool_size,
|
3505 | |
prev->connection_pool_size, NGX_PTR_SIZE * 64);
|
|
3505 |
prev->connection_pool_size, 64 * sizeof(void *));
|
3506 | 3506 |
ngx_conf_merge_size_value(conf->request_pool_size,
|
3507 | 3507 |
prev->request_pool_size, 4096);
|
3508 | 3508 |
ngx_conf_merge_msec_value(conf->client_header_timeout,
|