mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Add quic test
This commit is contained in:
parent
8748049875
commit
5998b900eb
6 changed files with 211 additions and 0 deletions
|
@ -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,
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue