mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
package tls
|
|
|
|
import (
|
|
"crypto/tls"
|
|
|
|
"v2ray.com/core/common/buf"
|
|
"v2ray.com/core/common/net"
|
|
)
|
|
|
|
//go:generate errorgen
|
|
|
|
var (
|
|
_ buf.Writer = (*conn)(nil)
|
|
)
|
|
|
|
type conn struct {
|
|
*tls.Conn
|
|
|
|
mergingWriter *buf.BufferedWriter
|
|
}
|
|
|
|
func (c *conn) WriteMultiBuffer(mb buf.MultiBuffer) error {
|
|
if c.mergingWriter == nil {
|
|
c.mergingWriter = buf.NewBufferedWriter(buf.NewWriter(c.Conn))
|
|
}
|
|
if err := c.mergingWriter.WriteMultiBuffer(mb); err != nil {
|
|
return err
|
|
}
|
|
return c.mergingWriter.Flush()
|
|
}
|
|
|
|
func (c *conn) HandshakeAddress() net.Address {
|
|
if err := c.Handshake(); err != nil {
|
|
return nil
|
|
}
|
|
state := c.Conn.ConnectionState()
|
|
if len(state.ServerName) == 0 {
|
|
return nil
|
|
}
|
|
return net.ParseAddress(state.ServerName)
|
|
}
|
|
|
|
// Client initiates a TLS client handshake on the given connection.
|
|
func Client(c net.Conn, config *tls.Config) net.Conn {
|
|
tlsConn := tls.Client(c, config)
|
|
return &conn{Conn: tlsConn}
|
|
}
|
|
|
|
// Server initiates a TLS server handshake on the given connection.
|
|
func Server(c net.Conn, config *tls.Config) net.Conn {
|
|
tlsConn := tls.Server(c, config)
|
|
return &conn{Conn: tlsConn}
|
|
}
|