summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schneider <mail@cynapses.org>2010-04-04 17:34:25 +0200
committerAndreas Schneider <mail@cynapses.org>2010-04-04 17:38:50 +0200
commitae64c19f2099ed732a4f20fff5ca130f384f8faf (patch)
tree0195c646d0a8c8981723927fdafff101e63e6704
parente5abc065aa444683524e27040a22ac922b9a76fe (diff)
downloadlibssh-ae64c19f2099ed732a4f20fff5ca130f384f8faf.tar.gz
libssh-ae64c19f2099ed732a4f20fff5ca130f384f8faf.tar.xz
libssh-ae64c19f2099ed732a4f20fff5ca130f384f8faf.zip
Fixed the group of the server functions.
-rw-r--r--include/libssh/server.h4
-rw-r--r--libssh/server.c19
2 files changed, 12 insertions, 11 deletions
diff --git a/include/libssh/server.h b/include/libssh/server.h
index 2067e164..7e660ce3 100644
--- a/include/libssh/server.h
+++ b/include/libssh/server.h
@@ -21,8 +21,8 @@
*/
/**
- * @defgroup ssh_server SSH Server
- * @addtogroup ssh_server
+ * @defgroup libssh_server The libssh server API
+ *
* @{
*/
diff --git a/libssh/server.c b/libssh/server.c
index 8b36149c..268165bb 100644
--- a/libssh/server.c
+++ b/libssh/server.c
@@ -21,12 +21,6 @@
* MA 02111-1307, USA.
*/
-/**
- * \defgroup ssh_server SSH Server
- * \addtogroup ssh_server
- * @{
- */
-
#include "config.h"
#include <errno.h>
@@ -50,6 +44,12 @@
#include "libssh/dh.h"
#include "libssh/messages.h"
+/**
+ * @addtogroup libssh_server
+ *
+ * @{
+ */
+
#ifdef _WIN32
#include <winsock2.h>
@@ -935,6 +935,7 @@ int ssh_execute_message_callbacks(ssh_session session){
}
return SSH_OK;
}
-/** @}
- */
-/* vim: set ts=2 sw=2 et cindent: */
+
+/* @} */
+
+/* vim: set ts=4 sw=4 et cindent: */