update dxcc

This commit is contained in:
2024-10-21 23:38:16 +07:00
parent ef84b7d7f9
commit ecedb0ea5d
14 changed files with 17966 additions and 346 deletions

View File

@ -59,8 +59,8 @@ func NewFlexClient(repo FlexDXClusterRepository, TCPServer *TCPServer, log *log.
return &FlexClient{
Address: Cfg.Flex.IP,
Port: "4992",
SpotChan: make(chan TelnetSpot),
FlexSpotChan: make(chan FlexSpot),
SpotChan: make(chan TelnetSpot, 100),
FlexSpotChan: make(chan FlexSpot, 100),
MsgChan: TCPServer.MsgChan,
Repo: repo,
TCPServer: TCPServer,