mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Fix parse socksaddr
This commit is contained in:
parent
38f39bc0c6
commit
a8e70a54fe
1 changed files with 4 additions and 0 deletions
|
@ -4,6 +4,7 @@ import (
|
|||
"net"
|
||||
"net/netip"
|
||||
"strconv"
|
||||
"strings"
|
||||
"unsafe"
|
||||
)
|
||||
|
||||
|
@ -171,6 +172,9 @@ func ParseAddr(s string) netip.Addr {
|
|||
}
|
||||
|
||||
func ParseSocksaddr(address string) Socksaddr {
|
||||
if !strings.Contains(address, ":") {
|
||||
return ParseSocksaddrHostPort(address, 0)
|
||||
}
|
||||
host, port, err := net.SplitHostPort(address)
|
||||
if err != nil {
|
||||
return Socksaddr{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue