You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is currently (I think) not possible as the raw ngx_pool_t is private to ngx::core::Pool, so that ngx_chain_get_free_buf and ngx_chain_update_chains can’t be called.
Possible solutions are:
Make the ngx_pool_t public, which I assume you don't want to do.
Implement the chain creation / update functions on Pool.
Something else?
The text was updated successfully, but these errors were encountered:
I would like to reuse buffers as described here.
https://nginx.org/en/docs/dev/development_guide.html#http_body_buffers_reuse
This is currently (I think) not possible as the raw ngx_pool_t is private to ngx::core::Pool, so that ngx_chain_get_free_buf and ngx_chain_update_chains can’t be called.
Possible solutions are:
The text was updated successfully, but these errors were encountered: