|
|
@@ -839,9 +839,12 @@ func dialSsh(
|
|
|
var err error
|
|
|
|
|
|
switch selectedProtocol {
|
|
|
- case protocol.TUNNEL_PROTOCOL_OBFUSCATED_SSH, protocol.TUNNEL_PROTOCOL_TAPDANCE_OBFUSCATED_SSH:
|
|
|
+ case protocol.TUNNEL_PROTOCOL_OBFUSCATED_SSH:
|
|
|
directDialAddress = fmt.Sprintf("%s:%d", serverEntry.IpAddress, serverEntry.SshObfuscatedPort)
|
|
|
|
|
|
+ case protocol.TUNNEL_PROTOCOL_TAPDANCE_OBFUSCATED_SSH:
|
|
|
+ directDialAddress = fmt.Sprintf("%s:%d", serverEntry.IpAddress, serverEntry.SshObfuscatedTapdancePort)
|
|
|
+
|
|
|
case protocol.TUNNEL_PROTOCOL_QUIC_OBFUSCATED_SSH:
|
|
|
directDialAddress = fmt.Sprintf("%s:%d", serverEntry.IpAddress, serverEntry.SshObfuscatedQUICPort)
|
|
|
QUICVersion = selectQUICVersion(config.clientParameters)
|