aboutsummaryrefslogtreecommitdiff
path: root/libssh/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'libssh/init.c')
-rw-r--r--libssh/init.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/libssh/init.c b/libssh/init.c
index 5a24284..1b48a40 100644
--- a/libssh/init.c
+++ b/libssh/init.c
@@ -25,7 +25,14 @@ MA 02111-1307, USA. */
#ifdef _WIN32
#include <winsock2.h>
#endif
-
+/**
+ * \addtogroup ssh_session
+ * @{
+ */
+/**
+ * \brief finalize and cleanup all libssh and cryptographic data structures
+ * \returns 0
+ */
int ssh_finalize()
{
ssh_crypto_finalize();
@@ -39,3 +46,7 @@ int ssh_finalize()
#endif
return 0;
}
+
+/**
+ * @}
+ */