diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libssh/priv.h | 1 | ||||
-rw-r--r-- | include/libssh/server.h | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h index ec53b5f..764b022 100644 --- a/include/libssh/priv.h +++ b/include/libssh/priv.h @@ -107,6 +107,7 @@ struct ssh_bind_struct { char *bindaddr; socket_t bindfd; unsigned int bindport; + unsigned int log_verbosity; int blocking; int toaccept; diff --git a/include/libssh/server.h b/include/libssh/server.h index db7d402..c9cf634 100644 --- a/include/libssh/server.h +++ b/include/libssh/server.h @@ -43,7 +43,9 @@ enum ssh_bind_options_e { SSH_BIND_OPTIONS_HOSTKEY, SSH_BIND_OPTIONS_DSAKEY, SSH_BIND_OPTIONS_RSAKEY, - SSH_BIND_OPTIONS_BANNER + SSH_BIND_OPTIONS_BANNER, + SSH_BIND_OPTIONS_LOG_VERBOSITY, + SSH_BIND_OPTIONS_LOG_VERBOSITY_STR }; //typedef struct ssh_bind_struct SSH_BIND; |