mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
22 lines
272 B
Go
22 lines
272 B
Go
package tls
|
|
|
|
import (
|
|
"crypto/tls"
|
|
)
|
|
|
|
type Connection struct {
|
|
*tls.Conn
|
|
}
|
|
|
|
func (this *Connection) Reusable() bool {
|
|
return false
|
|
}
|
|
|
|
func (this *Connection) SetReusable(bool) {}
|
|
|
|
func NewConnection(conn *tls.Conn) *Connection {
|
|
return &Connection{
|
|
Conn: conn,
|
|
}
|
|
}
|