|
Lines 1033-1039
process_escapes(Channel *c, Buffer *bin,
Link Here
|
| 1033 |
Supported escape sequences:\r\n\ |
1033 |
Supported escape sequences:\r\n\ |
| 1034 |
%c. - terminate session\r\n\ |
1034 |
%c. - terminate session\r\n\ |
| 1035 |
%cB - send a BREAK to the remote system\r\n\ |
1035 |
%cB - send a BREAK to the remote system\r\n\ |
| 1036 |
%cC - open a command line\r\n\ |
|
|
| 1037 |
%cR - Request rekey (SSH protocol 2 only)\r\n\ |
1036 |
%cR - Request rekey (SSH protocol 2 only)\r\n\ |
| 1038 |
%c# - list forwarded connections\r\n\ |
1037 |
%c# - list forwarded connections\r\n\ |
| 1039 |
%c? - this message\r\n\ |
1038 |
%c? - this message\r\n\ |
|
Lines 1078-1083
Supported escape sequences:\r\n\
Link Here
|
| 1078 |
continue; |
1077 |
continue; |
| 1079 |
|
1078 |
|
| 1080 |
case 'C': |
1079 |
case 'C': |
|
|
1080 |
if (c && c->ctl_fd != -1) |
| 1081 |
goto noescape; |
| 1081 |
process_cmdline(); |
1082 |
process_cmdline(); |
| 1082 |
continue; |
1083 |
continue; |
| 1083 |
|
1084 |
|