diff options
| author | Jon Simons <jon@jonsimons.org> | 2014-01-28 20:42:59 -0800 |
|---|---|---|
| committer | Andreas Schneider <asn@cryptomilk.org> | 2014-02-02 22:21:07 +0100 |
| commit | f29f10876a3801a83af064f14f250c1a8d9c08a0 (patch) | |
| tree | 47df6867932335e03b4353ef3028a9adec2f23cf /src | |
| parent | 45d28c76829c96ff23d328c8420e936cf0ef1e72 (diff) | |
doc: correct ssh_channel_read_timeout units
Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/channels.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/channels.c b/src/channels.c index 9327616d..51e96fe7 100644 --- a/src/channels.c +++ b/src/channels.c @@ -2720,16 +2720,16 @@ int ssh_channel_read(ssh_channel channel, void *dest, uint32_t count, int is_std /** * @brief Reads data from a channel. * - * @param[in] channel The channel to read from. + * @param[in] channel The channel to read from. * - * @param[in] dest The destination buffer which will get the data. + * @param[in] dest The destination buffer which will get the data. * - * @param[in] count The count of bytes to be read. + * @param[in] count The count of bytes to be read. * - * @param[in] is_stderr A boolean value to mark reading from the stderr flow. + * @param[in] is_stderr A boolean value to mark reading from the stderr flow. * - * @param[in] timeout A timeout in seconds. A value of -1 means infinite - * timeout. + * @param[in] timeout_ms A timeout in milliseconds. A value of -1 means + * infinite timeout. * * @return The number of bytes read, 0 on end of file or SSH_ERROR * on error. In nonblocking mode it Can return 0 if no data |
