mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 10:20:44 -05: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,
|
||
|
}
|
||
|
}
|