comparison src/event/quic/ngx_event_quic_frames.h @ 8949:2e22110828dd quic

QUIC: removed ngx_quic_copy_chain(). The function is unused.
author Roman Arutyunyan <arut@nginx.com>
date Thu, 16 Dec 2021 17:07:11 +0300
parents 19e063e955bf
children 3789f4a56d65
comparison
equal deleted inserted replaced
8948:19e063e955bf 8949:2e22110828dd
24 size_t len); 24 size_t len);
25 25
26 ngx_chain_t *ngx_quic_alloc_chain(ngx_connection_t *c); 26 ngx_chain_t *ngx_quic_alloc_chain(ngx_connection_t *c);
27 ngx_chain_t *ngx_quic_copy_buf(ngx_connection_t *c, u_char *data, 27 ngx_chain_t *ngx_quic_copy_buf(ngx_connection_t *c, u_char *data,
28 size_t len); 28 size_t len);
29 ngx_chain_t *ngx_quic_copy_chain(ngx_connection_t *c, ngx_chain_t *in,
30 size_t limit);
31 void ngx_quic_trim_chain(ngx_chain_t *in, size_t size); 29 void ngx_quic_trim_chain(ngx_chain_t *in, size_t size);
32 void ngx_quic_free_chain(ngx_connection_t *c, ngx_chain_t *in); 30 void ngx_quic_free_chain(ngx_connection_t *c, ngx_chain_t *in);
33 ngx_chain_t *ngx_quic_read_chain(ngx_connection_t *c, ngx_chain_t **chain, 31 ngx_chain_t *ngx_quic_read_chain(ngx_connection_t *c, ngx_chain_t **chain,
34 off_t limit); 32 off_t limit);
35 ngx_chain_t *ngx_quic_write_chain(ngx_connection_t *c, ngx_chain_t **chain, 33 ngx_chain_t *ngx_quic_write_chain(ngx_connection_t *c, ngx_chain_t **chain,