| 33 | ClassAllocator<QUICPollEvent, false> quicPollEventAllocator("quicPollEvent"); |
| 34 | |
| 35 | void |
| 36 | QUICPollEvent::init(QUICConnection *con, UDPPacket *packet) |
| 37 | { |
| 38 | this->con = con; |
| 39 | this->packet = packet; |
| 40 | if (con != nullptr) { |
| 41 | static_cast<QUICNetVConnection *>(con)->refcount_inc(); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | void |
| 46 | QUICPollEvent::free() |
nothing calls this directly
no test coverage detected