From b5ef99a32c250fc63f89cc686c13a008c5419d01 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sun, 29 May 2022 11:25:58 +0200 Subject: [PATCH] remove stray http3 connection file This was accidentally commited in #3411. --- http3/conn.go | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 http3/conn.go diff --git a/http3/conn.go b/http3/conn.go deleted file mode 100644 index c4ec749e6d9..00000000000 --- a/http3/conn.go +++ /dev/null @@ -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) -}