mirror of
https://github.com/SagerNet/sing-shadowtls.git
synced 2025-04-03 20:27:35 +03:00
Add client and service
This commit is contained in:
parent
320d58c57a
commit
6c9bdfc858
16 changed files with 1173 additions and 0 deletions
37
v2_client.go
Normal file
37
v2_client.go
Normal file
|
@ -0,0 +1,37 @@
|
|||
package shadowtls
|
||||
|
||||
import (
|
||||
"github.com/sagernet/sing/common/buf"
|
||||
"github.com/sagernet/sing/common/bufio"
|
||||
)
|
||||
|
||||
type clientConn struct {
|
||||
*shadowConn
|
||||
hashConn *hashReadConn
|
||||
}
|
||||
|
||||
func newClientConn(hashConn *hashReadConn) *clientConn {
|
||||
return &clientConn{newConn(hashConn.Conn), hashConn}
|
||||
}
|
||||
|
||||
func (c *clientConn) Write(p []byte) (n int, err error) {
|
||||
if c.hashConn != nil {
|
||||
sum := c.hashConn.Sum()
|
||||
c.hashConn = nil
|
||||
_, err = bufio.WriteVectorised(c.shadowConn, [][]byte{sum, p})
|
||||
if err == nil {
|
||||
n = len(p)
|
||||
}
|
||||
return
|
||||
}
|
||||
return c.shadowConn.Write(p)
|
||||
}
|
||||
|
||||
func (c *clientConn) WriteVectorised(buffers []*buf.Buffer) error {
|
||||
if c.hashConn != nil {
|
||||
sum := c.hashConn.Sum()
|
||||
c.hashConn = nil
|
||||
return c.shadowConn.WriteVectorised(append([]*buf.Buffer{buf.As(sum)}, buffers...))
|
||||
}
|
||||
return c.shadowConn.WriteVectorised(buffers)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue