| 340 | } |
| 341 | |
| 342 | type UDPConn interface { |
| 343 | ReadFrom() ([]byte, string, error) |
| 344 | WriteTo([]byte, string) error |
| 345 | Close() error |
| 346 | LocalAddr() net.Addr |
| 347 | SetDeadline(t time.Time) error |
| 348 | SetReadDeadline(t time.Time) error |
| 349 | SetWriteDeadline(t time.Time) error |
| 350 | } |
| 351 | |
| 352 | type quicPktConn struct { |
| 353 | Session *quic.Conn |
no outgoing calls
no test coverage detected