aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2010-05-10 22:01:09 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2010-05-10 22:01:09 +0200
commit4a21b6f1689be7f6d11c221e4b4f6392976ddb70 (patch)
tree6f75645e9d015168214e30c41b26069d0fa9f8f7 /include
parentfe16cce405665afa32ba3623ce4337a2d6007037 (diff)
downloadlibssh-4a21b6f1689be7f6d11c221e4b4f6392976ddb70.tar.gz
libssh-4a21b6f1689be7f6d11c221e4b4f6392976ddb70.tar.xz
libssh-4a21b6f1689be7f6d11c221e4b4f6392976ddb70.zip
Some grammarnazi things + fix int->socket_t
Diffstat (limited to 'include')
-rw-r--r--include/libssh/poll.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/libssh/poll.h b/include/libssh/poll.h
index ab00139..2951245 100644
--- a/include/libssh/poll.h
+++ b/include/libssh/poll.h
@@ -81,7 +81,8 @@ typedef struct ssh_poll_ctx_struct *ssh_poll_ctx;
typedef struct ssh_poll_handle_struct *ssh_poll_handle;
/**
- * @brief SSH poll callback.
+ * @brief SSH poll callback. This callback will be used when an event
+ * caught on the socket.
*
* @param p Poll object this callback belongs to.
* @param fd The raw socket.
@@ -89,9 +90,9 @@ typedef struct ssh_poll_handle_struct *ssh_poll_handle;
* @param userdata Userdata to be passed to the callback function.
*
* @return 0 on success, < 0 if you removed the poll object from
- * it's poll context.
+ * its poll context.
*/
-typedef int (*ssh_poll_callback)(ssh_poll_handle p, int fd, int revents,
+typedef int (*ssh_poll_callback)(ssh_poll_handle p, socket_t fd, int revents,
void *userdata);