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:
parent
a5f7f2f2a1
commit
da44036046
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue