Skip to content

Commit

Permalink
added more remote session exit cases
Browse files Browse the repository at this point in the history
  • Loading branch information
cedrozor committed Apr 3, 2018
1 parent 28a6b65 commit dde905b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Myrtille.Web/js/myrtille.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,16 @@ function handleRemoteSessionExit(exitCode)
alert('The remote connection was logged out from admin console');
break;

// idle timeout
case 65539:
alert('The remote connection was disconnected after the idle timeout has expired');
break;

// maximum time
case 65540:
alert('The remote connection was disconnected after the maximum session time was reached');
break;

// session disconnect from windows menu
case 65547:
//alert('The remote connection was disconnected from windows menu');
Expand Down

0 comments on commit dde905b

Please sign in to comment.