QUIC: simplified ngx_quic_create_long_header().

As seen in the quic-transport draft, which this implementation follows:
Initial packets sent by the server MUST set the Token Length field to zero.
This commit is contained in:
Sergey Kandaurov 2020-10-21 12:03:22 +01:00
parent a47a4400b8
commit fe2c392551

View File

@ -433,7 +433,7 @@ ngx_quic_create_long_header(ngx_quic_header_t *pkt, u_char *out,
p = ngx_cpymem(p, pkt->scid.data, pkt->scid.len);
if (pkt->level == ssl_encryption_initial) {
ngx_quic_build_int(&p, pkt->token.len);
ngx_quic_build_int(&p, 0);
}
ngx_quic_build_int(&p, pkt_len + pkt->num_len);