View | Details | Raw Unified | Return to bug 388
Collapse All | Expand All

(-)clientloop.c~ (-9 / +11 lines)
Lines 635-650 Link Here
635
				snprintf(string, sizeof string,
635
				snprintf(string, sizeof string,
636
"%c?\r\n\
636
"%c?\r\n\
637
Supported escape sequences:\r\n\
637
Supported escape sequences:\r\n\
638
~.  - terminate connection\r\n\
638
%c.  - terminate connection\r\n\
639
~C  - open a command line\r\n\
639
%cC  - open a command line\r\n\
640
~R  - Request rekey (SSH protocol 2 only)\r\n\
640
%cR  - Request rekey (SSH protocol 2 only)\r\n\
641
~^Z - suspend ssh\r\n\
641
%c^Z - suspend ssh\r\n\
642
~#  - list forwarded connections\r\n\
642
%c#  - list forwarded connections\r\n\
643
~&  - background ssh (when waiting for connections to terminate)\r\n\
643
%c&  - background ssh (when waiting for connections to terminate)\r\n\
644
~?  - this message\r\n\
644
%c?  - this message\r\n\
645
~~  - send the escape character by typing it twice\r\n\
645
%c%c  - send the escape character by typing it twice\r\n\
646
(Note that escapes are only recognized immediately after newline.)\r\n",
646
(Note that escapes are only recognized immediately after newline.)\r\n",
647
					 escape_char);
647
					 escape_char,escape_char,escape_char,escape_char,
648
					 escape_char,escape_char,escape_char,escape_char,
649
					 escape_char,escape_char);
648
				buffer_append(berr, string, strlen(string));
650
				buffer_append(berr, string, strlen(string));
649
				continue;
651
				continue;
650
652

Return to bug 388