diff options
-rw-r--r-- | libssh/options.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libssh/options.c b/libssh/options.c index 77808e0..333c657 100644 --- a/libssh/options.c +++ b/libssh/options.c @@ -40,6 +40,11 @@ #endif /** + * @addtogroup ssh_session + * @{ + */ + +/** * @brief Duplicate the options of a session structure. * * If you make several sessions with the same options this is useful. You @@ -616,8 +621,13 @@ int ssh_options_set(ssh_session session, enum ssh_options_e type, return 0; } +/** @} */ #ifdef WITH_SERVER +/** + * @addtogroup ssh_server + * @{ + */ static int ssh_bind_options_set_algo(ssh_bind sshbind, int algo, const char *list) { if (!verify_existing_algo(algo, list)) { |