mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-08-07 14:25:17 +03:00
46 lines
922 B
Go
46 lines
922 B
Go
package v2rayquic
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
|
|
"github.com/sagernet/quic-go"
|
|
qtls "github.com/sagernet/sing-quic"
|
|
)
|
|
|
|
type StreamWrapper struct {
|
|
Conn *quic.Conn
|
|
*quic.Stream
|
|
}
|
|
|
|
func (s *StreamWrapper) Read(p []byte) (n int, err error) {
|
|
n, err = s.Stream.Read(p)
|
|
return n, qtls.WrapError(err)
|
|
}
|
|
|
|
func (s *StreamWrapper) Write(p []byte) (n int, err error) {
|
|
n, err = s.Stream.Write(p)
|
|
return n, qtls.WrapError(err)
|
|
}
|
|
|
|
func (s *StreamWrapper) LocalAddr() net.Addr {
|
|
return s.Conn.LocalAddr()
|
|
}
|
|
|
|
func (s *StreamWrapper) RemoteAddr() net.Addr {
|
|
return s.Conn.RemoteAddr()
|
|
}
|
|
|
|
func (s *StreamWrapper) Upstream() any {
|
|
return s.Stream
|
|
}
|
|
|
|
func (s *StreamWrapper) Close() error {
|
|
s.CancelRead(0)
|
|
s.Stream.Close()
|
|
// quic-go's Stream.Close does not unblock a Write blocked on flow control,
|
|
// but a past write deadline does; buffered data and the FIN are unaffected.
|
|
s.Stream.SetWriteDeadline(time.Now())
|
|
return nil
|
|
}
|