| 350 | } |
| 351 | |
| 352 | type quicPktConn struct { |
| 353 | Session *quic.Conn |
| 354 | Stream *wrappedQUICStream |
| 355 | CloseFunc func() |
| 356 | UDPSessionID uint32 |
| 357 | MsgCh <-chan *udpMessage |
| 358 | } |
| 359 | |
| 360 | func (c *quicPktConn) Hold() { |
| 361 | // Hold the stream until it's closed |
nothing calls this directly
no outgoing calls
no test coverage detected