Merge commit '314570d6c3d78c7a92a362f3ec3a4a06bdbebd28' into stream-debugging

This commit is contained in:
Andrew Welker
2025-11-03 10:56:53 -06:00
4 changed files with 196 additions and 90 deletions

View File

@@ -548,6 +548,12 @@ namespace PepperDash.Core
/// </summary>
public int AutoReconnectIntervalMs { get; set; }
/// <summary>
/// When true, turns off echo for the SSH session
/// </summary>
[JsonProperty("disableSshEcho")]
public bool DisableSshEcho { get; set; }
/// <summary>
/// Default constructor
/// </summary>
@@ -558,8 +564,7 @@ namespace PepperDash.Core
AutoReconnectIntervalMs = 5000;
Username = "";
Password = "";
DisableSshEcho = false;
}
}
}