mirror of
https://github.com/injoyai/tdx.git
synced 2025-11-26 21:25:35 +08:00
整理代码
This commit is contained in:
8
dial.go
8
dial.go
@@ -3,6 +3,7 @@ package tdx
|
||||
import (
|
||||
"context"
|
||||
"github.com/injoyai/ios"
|
||||
"github.com/injoyai/ios/module/tcp"
|
||||
"github.com/injoyai/logs"
|
||||
"math/rand"
|
||||
"net"
|
||||
@@ -10,6 +11,13 @@ import (
|
||||
"time"
|
||||
)
|
||||
|
||||
func NewTCPDial(addr string) ios.DialFunc {
|
||||
if !strings.Contains(addr, ":") {
|
||||
addr += ":7709"
|
||||
}
|
||||
return tcp.NewDial(addr)
|
||||
}
|
||||
|
||||
func NewHostDial(hosts []string) ios.DialFunc {
|
||||
if len(hosts) == 0 {
|
||||
hosts = Hosts
|
||||
|
||||
Reference in New Issue
Block a user