mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-03 20:07:40 +03:00
Improve none client
This commit is contained in:
parent
9fbb103c01
commit
1a554a61f3
3 changed files with 22 additions and 24 deletions
40
none.go
40
none.go
|
@ -60,9 +60,6 @@ type noneConn struct {
|
|||
}
|
||||
|
||||
func (c *noneConn) clientHandshake() error {
|
||||
c.access.Lock()
|
||||
defer c.access.Unlock()
|
||||
|
||||
err := M.SocksaddrSerializer.WriteAddrPort(c.Conn, c.destination)
|
||||
if err != nil {
|
||||
return err
|
||||
|
@ -71,37 +68,38 @@ func (c *noneConn) clientHandshake() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
// TODO: add write buffer support
|
||||
func (c *noneConn) Write(b []byte) (n int, err error) {
|
||||
if c.handshake {
|
||||
return c.Conn.Write(b)
|
||||
}
|
||||
|
||||
c.access.Lock()
|
||||
if c.handshake {
|
||||
c.access.Unlock()
|
||||
return c.Conn.Write(b)
|
||||
}
|
||||
|
||||
err = M.SocksaddrSerializer.WriteAddrPort(c.Conn, c.destination)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
c.handshake = true
|
||||
c.access.Unlock()
|
||||
return c.Conn.Write(b)
|
||||
}
|
||||
|
||||
func (c *noneConn) ReadFrom(r io.Reader) (n int64, err error) {
|
||||
if !c.handshake {
|
||||
c.access.Lock()
|
||||
if !c.handshake {
|
||||
c.access.Unlock()
|
||||
return bufio.ReadFrom0(c, r)
|
||||
}
|
||||
c.access.Unlock()
|
||||
func (c *noneConn) WriteBuffer(buffer *buf.Buffer) error {
|
||||
defer buffer.Release()
|
||||
if c.handshake {
|
||||
return common.Error(c.Conn.Write(buffer.Bytes()))
|
||||
}
|
||||
return c.Conn.(io.ReaderFrom).ReadFrom(r)
|
||||
|
||||
header := buf.With(buffer.ExtendHeader(M.SocksaddrSerializer.AddrPortLen(c.destination)))
|
||||
err := M.SocksaddrSerializer.WriteAddrPort(header, c.destination)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
c.handshake = true
|
||||
return common.Error(c.Conn.Write(buffer.Bytes()))
|
||||
}
|
||||
|
||||
func (c *noneConn) ReadFrom(r io.Reader) (n int64, err error) {
|
||||
if c.handshake {
|
||||
return bufio.ReadFrom0(c, r)
|
||||
}
|
||||
return bufio.Copy(c.Conn, r)
|
||||
}
|
||||
|
||||
func (c *noneConn) WriteTo(w io.Writer) (n int64, err error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue