| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | package hubimport (	"errors"	"net"	"reflect"	"time"	"github.com/v2ray/v2ray-core/transport")var (	ErrInvalidConn = errors.New("Invalid Connection."))type ConnectionHandler func(*Connection)type ConnectionManager interface {	Recycle(string, net.Conn)}type Connection struct {	dest     string	conn     net.Conn	listener ConnectionManager	reusable bool}func (this *Connection) Read(b []byte) (int, error) {	if this == nil || this.conn == nil {		return 0, ErrorClosedConnection	}	return this.conn.Read(b)}func (this *Connection) Write(b []byte) (int, error) {	if this == nil || this.conn == nil {		return 0, ErrorClosedConnection	}	return this.conn.Write(b)}func (this *Connection) Close() error {	if this == nil || this.conn == nil {		return ErrorClosedConnection	}	if transport.IsConnectionReusable() && this.Reusable() {		this.listener.Recycle(this.dest, this.conn)		return nil	}	return this.conn.Close()}func (this *Connection) LocalAddr() net.Addr {	return this.conn.LocalAddr()}func (this *Connection) RemoteAddr() net.Addr {	return this.conn.RemoteAddr()}func (this *Connection) SetDeadline(t time.Time) error {	return this.conn.SetDeadline(t)}func (this *Connection) SetReadDeadline(t time.Time) error {	return this.conn.SetReadDeadline(t)}func (this *Connection) SetWriteDeadline(t time.Time) error {	return this.conn.SetWriteDeadline(t)}func (this *Connection) SetReusable(reusable bool) {	this.reusable = reusable}func (this *Connection) Reusable() bool {	return this.reusable}func (this *Connection) SysFd() (int, error) {	cv := reflect.ValueOf(this.conn)	switch ce := cv.Elem(); ce.Kind() {	case reflect.Struct:		netfd := ce.FieldByName("conn").FieldByName("fd")		switch fe := netfd.Elem(); fe.Kind() {		case reflect.Struct:			fd := fe.FieldByName("sysfd")			return int(fd.Int()), nil		}	}	return 0, ErrInvalidConn}
 |