QUIC: removed Firefox workaround for trailing zeroes in datagrams.

This became unnecessary after discarding invalid packets since a6784cf32c13.
This commit is contained in:
Sergey Kandaurov 2021-09-09 19:12:27 +03:00
parent ef94770e16
commit 4208e67e98

View File

@ -730,11 +730,6 @@ ngx_quic_input(ngx_connection_t *c, ngx_buf_t *b, ngx_quic_conf_t *conf)
/* b->pos is at header end, adjust by actual packet length */
b->pos = pkt.data + pkt.len;
/* firefox workaround: skip zero padding at the end of quic packet */
while (b->pos < b->last && *(b->pos) == 0) {
b->pos++;
}
p = b->pos;
}