diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | clientloop.c | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -26,6 +26,10 @@ | |||
26 | [clientloop.c log.c ssh.1 log.h] | 26 | [clientloop.c log.c ssh.1 log.h] |
27 | Add ~v and ~V escape sequences to raise and lower the logging level | 27 | Add ~v and ~V escape sequences to raise and lower the logging level |
28 | respectively. Man page help from jmc, ok deraadt jmc | 28 | respectively. Man page help from jmc, ok deraadt jmc |
29 | - dtucker@cvs.openbsd.org 2012/09/06 09:50:13 | ||
30 | [clientloop.c] | ||
31 | Make the escape command help (~?) context sensitive so that only commands | ||
32 | that will work in the current session are shown. ok markus@ | ||
29 | 33 | ||
30 | 20120830 | 34 | 20120830 |
31 | - (dtucker) [moduli] Import new moduli file. | 35 | - (dtucker) [moduli] Import new moduli file. |
diff --git a/clientloop.c b/clientloop.c index 0e5c45a9d..72b1d40f0 100644 --- a/clientloop.c +++ b/clientloop.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: clientloop.c,v 1.242 2012/09/06 04:37:38 dtucker Exp $ */ | 1 | /* $OpenBSD: clientloop.c,v 1.243 2012/09/06 06:25:41 dtucker Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -1200,8 +1200,8 @@ Supported escape sequences:\r\n\ | |||
1200 | %cB - send a BREAK to the remote system\r\n\ | 1200 | %cB - send a BREAK to the remote system\r\n\ |
1201 | %cC - open a command line\r\n\ | 1201 | %cC - open a command line\r\n\ |
1202 | %cR - Request rekey (SSH protocol 2 only)\r\n\ | 1202 | %cR - Request rekey (SSH protocol 2 only)\r\n\ |
1203 | %cV - Increase verbosity (LogLevel)\r\n\ | 1203 | %cV - Decrease verbosity (LogLevel)\r\n\ |
1204 | %cv - Decrease verbosity (LogLevel)\r\n\ | 1204 | %cv - Increase verbosity (LogLevel)\r\n\ |
1205 | %c^Z - suspend ssh\r\n\ | 1205 | %c^Z - suspend ssh\r\n\ |
1206 | %c# - list forwarded connections\r\n\ | 1206 | %c# - list forwarded connections\r\n\ |
1207 | %c& - background ssh (when waiting for connections to terminate)\r\n\ | 1207 | %c& - background ssh (when waiting for connections to terminate)\r\n\ |