comparison src/event/quic/ngx_event_quic.h @ 8760:baf9551b4a5b quic

QUIC: renamed stream field from c to connection.
author Roman Arutyunyan <arut@nginx.com>
date Mon, 19 Apr 2021 17:21:07 +0300
parents b4e6b7049984
children f52a2b77d406
comparison
equal deleted inserted replaced
8759:515ac3c8435c 8760:baf9551b4a5b
73 typedef struct ngx_quic_frames_stream_s ngx_quic_frames_stream_t; 73 typedef struct ngx_quic_frames_stream_s ngx_quic_frames_stream_t;
74 74
75 struct ngx_quic_stream_s { 75 struct ngx_quic_stream_s {
76 ngx_rbtree_node_t node; 76 ngx_rbtree_node_t node;
77 ngx_connection_t *parent; 77 ngx_connection_t *parent;
78 ngx_connection_t *c; 78 ngx_connection_t *connection;
79 uint64_t id; 79 uint64_t id;
80 uint64_t acked; 80 uint64_t acked;
81 uint64_t send_max_data; 81 uint64_t send_max_data;
82 ngx_buf_t *b; 82 ngx_buf_t *b;
83 ngx_quic_frames_stream_t *fs; 83 ngx_quic_frames_stream_t *fs;