comparison src/event/quic/ngx_event_quic_frames.h @ 8947:6ccf3867959a quic

QUIC: refactored ngx_quic_order_bufs() and ngx_quic_split_bufs(). They are replaced with ngx_quic_write_chain() and ngx_quic_read_chain(). These functions represent the API to data buffering. The first function adds data of given size at given offset to the buffer. Now it returns the unwritten part of the chain similar to c->send_chain(). The second function returns data of given size from the beginning of the buffer. Its second argument and return value are swapped compared to ngx_quic_split_bufs() to better match ngx_quic_write_chain(). Added, returned and stored data are regular ngx_chain_t/ngx_buf_t chains. Missing data is marked with b->sync flag. The functions are now used in both send and recv data chains in QUIC streams.
author Roman Arutyunyan <arut@nginx.com>
date Fri, 24 Dec 2021 18:17:23 +0300
parents 56dec0d4e5b1
children 19e063e955bf
comparison
equal deleted inserted replaced
8946:56dec0d4e5b1 8947:6ccf3867959a
28 size_t len); 28 size_t len);
29 ngx_chain_t *ngx_quic_copy_chain(ngx_connection_t *c, ngx_chain_t *in, 29 ngx_chain_t *ngx_quic_copy_chain(ngx_connection_t *c, ngx_chain_t *in,
30 size_t limit); 30 size_t limit);
31 void ngx_quic_trim_bufs(ngx_chain_t *in, size_t size); 31 void ngx_quic_trim_bufs(ngx_chain_t *in, size_t size);
32 void ngx_quic_free_bufs(ngx_connection_t *c, ngx_chain_t *in); 32 void ngx_quic_free_bufs(ngx_connection_t *c, ngx_chain_t *in);
33 ngx_int_t ngx_quic_order_bufs(ngx_connection_t *c, ngx_chain_t **out, 33 ngx_chain_t *ngx_quic_read_chain(ngx_connection_t *c, ngx_chain_t **chain,
34 off_t limit);
35 ngx_chain_t *ngx_quic_write_chain(ngx_connection_t *c, ngx_chain_t **chain,
34 ngx_chain_t *in, off_t limit, off_t offset); 36 ngx_chain_t *in, off_t limit, off_t offset);
35 37
36 #if (NGX_DEBUG) 38 #if (NGX_DEBUG)
37 void ngx_quic_log_frame(ngx_log_t *log, ngx_quic_frame_t *f, ngx_uint_t tx); 39 void ngx_quic_log_frame(ngx_log_t *log, ngx_quic_frame_t *f, ngx_uint_t tx);
38 #else 40 #else