aboutsummaryrefslogtreecommitdiff
path: root/libssh/init.c
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2008-11-04 21:59:12 +0000
committerAris Adamantiadis <aris@0xbadc0de.be>2008-11-04 21:59:12 +0000
commit64e73b8d8ab216c5dd8812c8cdad39b7f1bfc4d2 (patch)
tree2c5f71d247607d17b55df210adc6b75d833b3572 /libssh/init.c
parent90bb81f7b0a729f0508c02586b3d609950d24f2c (diff)
downloadlibssh-64e73b8d8ab216c5dd8812c8cdad39b7f1bfc4d2.tar.gz
libssh-64e73b8d8ab216c5dd8812c8cdad39b7f1bfc4d2.tar.xz
libssh-64e73b8d8ab216c5dd8812c8cdad39b7f1bfc4d2.zip
doxygen fixes. Mostly typos and some comments.
sftp must be fully documented ! git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@187 7dcaeef0-15fb-0310-b436-a5af3365683c
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 5a242844..1b48a407 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;
}
+
+/**
+ * @}
+ */