Lines Matching refs:cw
97 auto cw = (*cwit).second;
99 cw->handle_packet(faddr, remote_addr, local_addr, pi, data, datalen);
114 auto cw = (*cwit).second;
116 cw->handle_packet(faddr, remote_addr, local_addr, pi, data, datalen);
529 auto cw = std::make_unique<CloseWait>(worker_, std::vector<ngtcp2_cid>{idcid},
532 add_close_wait(cw.release());
666 void QUICConnectionHandler::add_close_wait(CloseWait *cw) {
667 for (auto &cid : cw->scids) {
668 close_waits_.emplace(cid, cw);
672 void QUICConnectionHandler::remove_close_wait(const CloseWait *cw) {
673 for (auto &cid : cw->scids) {
688 auto cw = static_cast<CloseWait *>(w->data);
694 auto quic_conn_handler = cw->worker->get_quic_connection_handler();
695 quic_conn_handler->remove_close_wait(cw);
697 delete cw;