mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 23:20:25 +08:00
69 lines
1.5 KiB
Go
69 lines
1.5 KiB
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package nodes
|
|
|
|
import "net"
|
|
|
|
type BaseClientConn struct {
|
|
rawConn net.Conn
|
|
|
|
isBound bool
|
|
serverId int64
|
|
remoteAddr string
|
|
|
|
isClosed bool
|
|
}
|
|
|
|
func (this *BaseClientConn) IsClosed() bool {
|
|
return this.isClosed
|
|
}
|
|
|
|
// IsBound 是否已绑定服务
|
|
func (this *BaseClientConn) IsBound() bool {
|
|
return this.isBound
|
|
}
|
|
|
|
// Bind 绑定服务
|
|
func (this *BaseClientConn) Bind(serverId int64, remoteAddr string, maxConnsPerServer int, maxConnsPerIP int) bool {
|
|
if this.isBound {
|
|
return true
|
|
}
|
|
this.isBound = true
|
|
this.serverId = serverId
|
|
this.remoteAddr = remoteAddr
|
|
|
|
// 检查是否可以连接
|
|
return sharedClientConnLimiter.Add(this.rawConn.RemoteAddr().String(), serverId, remoteAddr, maxConnsPerServer, maxConnsPerIP)
|
|
}
|
|
|
|
// SetServerId 设置服务ID
|
|
func (this *BaseClientConn) SetServerId(serverId int64) {
|
|
this.serverId = serverId
|
|
}
|
|
|
|
// ServerId 读取当前连接绑定的服务ID
|
|
func (this *BaseClientConn) ServerId() int64 {
|
|
return this.serverId
|
|
}
|
|
|
|
// RawIP 原本IP
|
|
func (this *BaseClientConn) RawIP() string {
|
|
ip, _, _ := net.SplitHostPort(this.rawConn.RemoteAddr().String())
|
|
return ip
|
|
}
|
|
|
|
// TCPConn 转换为TCPConn
|
|
func (this *BaseClientConn) TCPConn() (*net.TCPConn, bool) {
|
|
conn, ok := this.rawConn.(*net.TCPConn)
|
|
return conn, ok
|
|
}
|
|
|
|
// SetLinger 设置Linger
|
|
func (this *BaseClientConn) SetLinger(seconds int) error {
|
|
tcpConn, ok := this.TCPConn()
|
|
if ok {
|
|
return tcpConn.SetLinger(seconds)
|
|
}
|
|
return nil
|
|
}
|