Mercurial > dropbear
changeset 350:01e4180895ba
merge of '9a4e042fd565f46141e81e0c1ab90260303348fe'
and 'bea3887a5875cf3ab8a1331e15e698b37b61fe37'
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 07 Aug 2006 13:41:23 +0000 |
parents | bf29e6659fb9 (current diff) dba106bf6b34 (diff) |
children | 9e2ad1023978 |
files | options.h svr-chansession.c |
diffstat | 2 files changed, 14 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/options.h Thu Jul 27 01:24:39 2006 +0000 +++ b/options.h Mon Aug 07 13:41:23 2006 +0000 @@ -199,8 +199,10 @@ * not using the Dropbear client, you'll need to change it */ #define _PATH_SSH_PROGRAM "/usr/bin/dbclient" -/* Multi-purpose binary configuration has now moved. Look at the top - * of the Makefile for instructions, or INSTALL */ +/* Whether to log commands executed by a client. This only logs the + * (single) command sent to the server, not what a user did in a + * shell/sftp session etc. */ +/* #define LOG_COMMANDS */ /******************************************************************* * You shouldn't edit below here unless you know you need to.
--- a/svr-chansession.c Thu Jul 27 01:24:39 2006 +0000 +++ b/svr-chansession.c Mon Aug 07 13:41:23 2006 +0000 @@ -588,6 +588,16 @@ } } +#ifdef LOG_COMMANDS + if (chansess->cmd) { + dropbear_log(LOG_INFO, "user %s executing '%s'", + ses.authstate.printableuser, chansess->cmd); + } else { + dropbear_log(LOG_INFO, "user %s executing login shell", + ses.authstate.printableuser); + } +#endif + if (chansess->term == NULL) { /* no pty */ ret = noptycommand(channel, chansess);