mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-01-06 01:23:38 +08:00
fix: when ssh connect to a ip, if this ip map to a domain in clash, change ip to host may redirect to a diffrent ip
This commit is contained in:
parent
13012a9f89
commit
93d2cfa091
@ -83,7 +83,11 @@ type Metadata struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (m *Metadata) RemoteAddress() string {
|
func (m *Metadata) RemoteAddress() string {
|
||||||
return net.JoinHostPort(m.String(), m.DstPort)
|
if m.DstIP != nil {
|
||||||
|
return net.JoinHostPort(m.DstIP.String(), m.DstPort)
|
||||||
|
} else {
|
||||||
|
return net.JoinHostPort(m.String(), m.DstPort)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *Metadata) SourceAddress() string {
|
func (m *Metadata) SourceAddress() string {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user