diff options
| author | Michael <[email protected]> | 2017-01-22 10:01:13 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-01-22 10:01:13 -0500 |
| commit | 555cc1319aae4b6e7cf9421f63dee9ffc547cbd5 (patch) | |
| tree | 945f4ccd51a97ecc49493c5177193a3dd3ecf0bf /ShiftOS.WinForms/Applications/Terminal.cs | |
| parent | 2ce2214d5e43fb625c2f9cde22f791ee097643e1 (diff) | |
| download | shiftos_thereturn-555cc1319aae4b6e7cf9421f63dee9ffc547cbd5.tar.gz shiftos_thereturn-555cc1319aae4b6e7cf9421f63dee9ffc547cbd5.tar.bz2 shiftos_thereturn-555cc1319aae4b6e7cf9421f63dee9ffc547cbd5.zip | |
Add trm.exit command for exiting remote sessions.
Diffstat (limited to 'ShiftOS.WinForms/Applications/Terminal.cs')
| -rw-r--r-- | ShiftOS.WinForms/Applications/Terminal.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/Terminal.cs b/ShiftOS.WinForms/Applications/Terminal.cs index 133858c..0a123d6 100644 --- a/ShiftOS.WinForms/Applications/Terminal.cs +++ b/ShiftOS.WinForms/Applications/Terminal.cs @@ -361,6 +361,11 @@ namespace ShiftOS.WinForms.Applications IsInRemoteSystem = true; RemoteGuid = msg.GUID; } + else if(msg.Name == "trm_handshake_stop") + { + IsInRemoteSystem = false; + RemoteGuid = ""; + } }; } |
