123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- package utils
- import (
- "net"
- "sync"
- )
- type Link struct {
- Id int
- ConnType string
- Host string
- En int
- De int
- Crypt bool
- Conn *Conn
- Flow *Flow
- UdpListener *net.UDPConn
- Rate *Rate
- UdpRemoteAddr *net.UDPAddr
- }
- func NewLink(id int, connType string, host string, en, de int, crypt bool, conn *Conn, flow *Flow, udpListener *net.UDPConn, rate *Rate, UdpRemoteAddr *net.UDPAddr) *Link {
- return &Link{
- Id: id,
- ConnType: connType,
- Host: host,
- En: en,
- De: de,
- Crypt: crypt,
- Conn: conn,
- Flow: flow,
- UdpListener: udpListener,
- Rate: rate,
- UdpRemoteAddr: UdpRemoteAddr,
- }
- }
- type Flow struct {
- ExportFlow int64
- InletFlow int64
- FlowLimit int64
- sync.RWMutex
- }
- func (s *Flow) Add(in, out int) {
- s.Lock()
- defer s.Unlock()
- s.InletFlow += int64(in)
- s.ExportFlow += int64(out)
- }
- type Client struct {
- Cnf *Config
- Id int
- VerifyKey string
- Addr string
- Remark string
- Status bool
- IsConnect bool
- RateLimit int
- Flow *Flow
- Rate *Rate
- id int
- sync.RWMutex
- }
- func (s *Client) GetId() int {
- s.Lock()
- defer s.Unlock()
- s.id++
- return s.id
- }
- type Tunnel struct {
- Id int
- TcpPort int
- Mode string
- Target string
- Status bool
- Client *Client
- Flow *Flow
- Config *Config
- UseClientCnf bool
- Remark string
- }
- type Config struct {
- U string
- P string
- Compress string
- Crypt bool
- CompressEncode int
- CompressDecode int
- }
- type Host struct {
- Host string
- Target string
- HeaderChange string
- HostChange string
- Flow *Flow
- Client *Client
- Remark string
- }
- func DeepCopyConfig(c *Config) *Config {
- return &Config{
- U: c.U,
- P: c.P,
- Compress: c.Compress,
- Crypt: c.Crypt,
- CompressEncode: c.CompressEncode,
- CompressDecode: c.CompressDecode,
- }
- }
|