Add quic test

This commit is contained in:
世界 2022-05-09 05:57:28 +08:00
parent 8748049875
commit 5998b900eb
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 211 additions and 0 deletions

View file

@ -16,6 +16,12 @@ type AssociateConn struct {
dest M.Socksaddr
}
func (c AssociateConn) Close() error {
c.conn.Close()
c.Conn.Close()
return nil
}
func NewAssociateConn(conn net.Conn, packetConn net.Conn, destination M.Socksaddr) *AssociateConn {
return &AssociateConn{
Conn: packetConn,

View file

@ -166,6 +166,7 @@ func handleConnection(authRequest *AuthRequest, ctx context.Context, conn net.Co
if err != nil {
handler.HandleError(err)
}
conn.Close()
}()
return common.Error(io.Copy(io.Discard, conn))
default: