Release 2.19.3

- [BUGFIX] Regression in 2.19.1 that breaks Q050
This commit is contained in:
Dmitri Tikhonov 2020-08-04 07:22:29 -04:00
parent 244e8c6fb9
commit d39df4b619
4 changed files with 7 additions and 3 deletions

View file

@ -799,7 +799,7 @@ gquic_Q050_gen_crypto_frame (unsigned char *buf, size_t buf_len,
lsquic_stream_id_t stream_id, uint64_t offset, int fin,
size_t size, gsf_read_f gsf_read, void *stream)
{
return lsquic_ietf_v1_gen_crypto_frame(buf, 0x8, stream_id, buf_len,
return lsquic_ietf_v1_gen_crypto_frame(buf, 0x8, buf_len, stream_id,
offset, fin, size, gsf_read, stream);
}