1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-29 01:03:57 +03:00

doc: Fixed typos in messaging introduction.

This commit is contained in:
Andreas Schneider
2011-03-09 19:06:59 +01:00
parent 7daa81f3aa
commit e2706fe21d

View File

@@ -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 * This file is part of the SSH Library
* *
@@ -49,12 +49,14 @@
* @defgroup libssh_messages The SSH message functions * @defgroup libssh_messages The SSH message functions
* @ingroup libssh * @ingroup libssh
* *
* This file contains the Message parsing utilities for server programs using * This file contains the message parsing utilities for client and server
* libssh. The main loop of the program will call ssh_message_get(session) to * programs using libssh.
* 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 * On the server the the main loop of the program will call
* functions to handle it (or use the default handlers if she doesn't know what to * ssh_message_get(session) to get messages as they come. They are not 1-1 with
* do * 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).
* *
* @{ * @{
*/ */