-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconn.go
100 lines (84 loc) · 2.06 KB
/
conn.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package xmppcore
import (
"crypto/tls"
"errors"
"io"
"net"
"time"
)
var (
ErrBindTlsUniqueNotSupported = errors.New("bind tls unique not supported")
)
type Conn interface {
net.Conn
StartTLS(*tls.Config)
BindTlsUnique(io.Writer) error
StartCompress(BuildCompressor)
}
type TcpConn struct {
underlying net.Conn
comp Compressor
isClient bool
}
func NewTcpConn(underlying net.Conn, isClient bool) *TcpConn {
_, isTcp := underlying.(*net.TCPConn)
_, isTls := underlying.(*tls.Conn)
if !isTcp && !isTls {
panic("not a tcp conn nor a tls conn")
}
return &TcpConn{underlying, nil, isClient}
}
func (conn *TcpConn) Read(b []byte) (int, error) {
if conn.comp != nil {
return conn.comp.Read(b)
}
return conn.underlying.Read(b)
}
func (conn *TcpConn) Write(b []byte) (int, error) {
if conn.comp != nil {
return conn.comp.Write(b)
}
return conn.underlying.Write(b)
}
func (conn *TcpConn) Close() error {
return conn.underlying.Close()
}
func (conn *TcpConn) LocalAddr() net.Addr {
return conn.underlying.LocalAddr()
}
func (conn *TcpConn) RemoteAddr() net.Addr {
return conn.underlying.RemoteAddr()
}
func (conn *TcpConn) SetDeadline(t time.Time) error {
return conn.underlying.SetDeadline(t)
}
func (conn *TcpConn) SetReadDeadline(t time.Time) error {
return conn.underlying.SetReadDeadline(t)
}
func (conn *TcpConn) SetWriteDeadline(t time.Time) error {
return conn.underlying.SetWriteDeadline(t)
}
func (conn *TcpConn) BindTlsUnique(w io.Writer) error {
if c, ok := conn.underlying.(*tls.Conn); ok {
cs := c.ConnectionState()
if cs.Version < tls.VersionTLS13 {
return ErrBindTlsUniqueNotSupported
}
w.Write([]byte(cs.TLSUnique))
return nil
}
return ErrBindTlsUniqueNotSupported
}
func (conn *TcpConn) StartTLS(conf *tls.Config) {
if _, ok := conn.underlying.(*tls.Conn); ok {
return
}
if !conn.isClient {
conn.underlying = tls.Server(conn.underlying, conf)
return
}
conn.underlying = tls.Client(conn.underlying, conf)
}
func (conn *TcpConn) StartCompress(buildCompress BuildCompressor) {
conn.comp = buildCompress(conn.underlying)
}