Home
last modified time | relevance | path

Searched refs:QUICLY_SEND_PN_SIZE (Results 1 – 3 of 3) sorted by relevance

/dports/www/h2o-devel/h2o-dcc7134/deps/quicly/lib/
H A Ddefaults.c424 … .input = datagram.base + payload_from - QUICLY_SEND_PN_SIZE + QUICLY_MAX_PN_SIZE}; in default_finalize_send_packet()
431 for (size_t i = 0; i != QUICLY_SEND_PN_SIZE; ++i) in default_finalize_send_packet()
432 datagram.base[payload_from + i - QUICLY_SEND_PN_SIZE] ^= supp.output[i + 1]; in default_finalize_send_packet()
H A Dquicly.c3063 while (s->dst - s->dst_payload_from < QUICLY_MAX_PN_SIZE - QUICLY_SEND_PN_SIZE) in commit_send_packet()
3076 …ngth = s->dst - s->dst_payload_from + s->target.cipher->aead->algo->tag_size + QUICLY_SEND_PN_SIZE; in commit_send_packet()
3079 quicly_encode16(s->dst_payload_from - QUICLY_SEND_PN_SIZE - 2, length); in commit_send_packet()
3089 … quicly_encode16(s->dst_payload_from - QUICLY_SEND_PN_SIZE, (uint16_t)conn->egress.packet_number); in commit_send_packet()
3182 …size_t overhead = 1 /* type */ + conn->super.remote.cid_set.cids[0].cid.len + QUICLY_SEND_PN_SIZE + in do_allocate_frame()
3188 size_t packet_min_space = QUICLY_MAX_PN_SIZE - QUICLY_SEND_PN_SIZE; in do_allocate_frame()
3250 s->dst += QUICLY_SEND_PN_SIZE; /* space for PN bits, filled in at commit time */ in do_allocate_frame()
3254 assert(s->dst_end - s->dst >= QUICLY_MAX_PN_SIZE - QUICLY_SEND_PN_SIZE); in do_allocate_frame()
4655 PTLS_BUILD_ASSERT(QUICLY_SEND_PN_SIZE == 2); in quicly_send_close_invalid_token()
/dports/www/h2o-devel/h2o-dcc7134/deps/quicly/include/
H A Dquicly.h82 #define QUICLY_SEND_PN_SIZE 2 /* size of PN used for sending */ macro