Searched refs:ngtcp2_pkt_chain (Results 1 – 4 of 4) sorted by relevance
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
D | ngtcp2_pkt.h | 368 typedef struct ngtcp2_pkt_chain ngtcp2_pkt_chain; typedef 373 struct ngtcp2_pkt_chain { struct 376 ngtcp2_pkt_chain *next; argument 399 int ngtcp2_pkt_chain_new(ngtcp2_pkt_chain **ppc, const ngtcp2_path *path, 408 void ngtcp2_pkt_chain_del(ngtcp2_pkt_chain *pc, const ngtcp2_mem *mem);
|
D | ngtcp2_conn.h | 290 ngtcp2_pkt_chain *buffed_pkts;
|
D | ngtcp2_pkt.c | 37 int ngtcp2_pkt_chain_new(ngtcp2_pkt_chain **ppc, const ngtcp2_path *path, in ngtcp2_pkt_chain_new() 41 *ppc = ngtcp2_mem_malloc(mem, sizeof(ngtcp2_pkt_chain) + pktlen); in ngtcp2_pkt_chain_new() 49 (*ppc)->pkt = (uint8_t *)(*ppc) + sizeof(ngtcp2_pkt_chain); in ngtcp2_pkt_chain_new() 59 void ngtcp2_pkt_chain_del(ngtcp2_pkt_chain *pc, const ngtcp2_mem *mem) { in ngtcp2_pkt_chain_del()
|
D | ngtcp2_conn.c | 710 static void delete_buffed_pkts(ngtcp2_pkt_chain *pc, const ngtcp2_mem *mem) { in delete_buffed_pkts() 711 ngtcp2_pkt_chain *next; in delete_buffed_pkts() 5594 ngtcp2_pkt_chain **ppc = &pktns->rx.buffed_pkts, *pc; in conn_buffer_pkt() 9338 ngtcp2_pkt_chain **ppc, *next; in conn_process_buffered_protected_pkt() 9385 ngtcp2_pkt_chain **ppc, *next; in conn_process_buffered_handshake_pkt()
|