aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2011-03-09 19:06:59 +0100
committerAndreas Schneider <asn@cryptomilk.org>2011-03-09 19:06:59 +0100
commite2706fe21d8eb4b7c15927ec39a07586cb13f6b6 (patch)
tree0f5bc2237b5422576a11fdb7d205324b35d9908e /src
parent7daa81f3aa876acb69a9cb332391dd218ac6838c (diff)
downloadlibssh-e2706fe21d8eb4b7c15927ec39a07586cb13f6b6.tar.gz
libssh-e2706fe21d8eb4b7c15927ec39a07586cb13f6b6.tar.xz
libssh-e2706fe21d8eb4b7c15927ec39a07586cb13f6b6.zip
doc: Fixed typos in messaging introduction.
Diffstat (limited to 'src')
-rw-r--r--src/messages.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/messages.c b/src/messages.c
index 667cab5..4d7382a 100644
--- a/src/messages.c
+++ b/src/messages.c
@@ -1,5 +1,5 @@
/*
- * messages.c - message parsion for the server
+ * messages.c - message parsing for client and server
*
* This file is part of the SSH Library
*
@@ -49,12 +49,14 @@
* @defgroup libssh_messages The SSH message functions
* @ingroup libssh
*
- * This file contains the Message parsing utilities for server programs using
- * libssh. The main loop of the program will call ssh_message_get(session) to
- * get messages as they come. they are not 1-1 with the protocol messages.
- * then, the user will know what kind of a message it is and use the appropriate
- * functions to handle it (or use the default handlers if she doesn't know what to
- * do
+ * This file contains the message parsing utilities for client and server
+ * programs using libssh.
+ *
+ * On the server the the main loop of the program will call
+ * ssh_message_get(session) to get messages as they come. They are not 1-1 with
+ * the protocol messages. Then, the user will know what kind of a message it is
+ * and use the appropriate functions to handle it (or use the default handlers
+ * if you don't know what to do).
*
* @{
*/