remove stray http3 connection file

This was accidentally commited in #3411.
This commit is contained in:
Marten Seemann 2022-05-29 11:25:58 +02:00
parent 708eb47cec
commit b5ef99a32c

View file

@ -1,21 +0,0 @@
package http3
import "github.com/lucas-clemente/quic-go"
type ConnState struct {
SupportsDatagram bool
}
type Conn struct {
conn quic.Connection
supportsDatagram bool
}
func (c *Conn) State() ConnState {
return ConnState{SupportsDatagram: c.supportsDatagram}
}
func (c *Conn) SendDatagram(b []byte) error {
return c.conn.SendMessage(b)
}