mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
remove stray http3 connection file
This was accidentally commited in #3411.
This commit is contained in:
parent
708eb47cec
commit
b5ef99a32c
1 changed files with 0 additions and 21 deletions
|
@ -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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue