[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 18/24] buffer: remove ssh_buffer_get_rest_len()
[Thread Prev] | [Thread Next]
- Subject: [PATCH 18/24] buffer: remove ssh_buffer_get_rest_len()
- From: Fabiano Fidêncio <fidencio@xxxxxxxxxx>
- Reply-to: libssh@xxxxxxxxxx
- Date: Mon, 18 Jan 2016 10:06:59 +0100
- To: libssh@xxxxxxxxxx
- Cc: Fabiano Fidêncio <fidencio@xxxxxxxxxx>
Signed-off-by: Fabiano Fidêncio <fidencio@xxxxxxxxxx> --- include/libssh/buffer.h | 5 ++--- src/buffer.c | 17 +---------------- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/include/libssh/buffer.h b/include/libssh/buffer.h index 15294b2..656db95 100644 --- a/include/libssh/buffer.h +++ b/include/libssh/buffer.h @@ -43,7 +43,6 @@ struct ssh_buffer_struct { LIBSSH_API void ssh_buffer_free(ssh_buffer buffer); LIBSSH_API void *ssh_buffer_get_begin(ssh_buffer buffer); -LIBSSH_API uint32_t ssh_buffer_get_len(ssh_buffer buffer); LIBSSH_API ssh_buffer ssh_buffer_new(void); void ssh_buffer_set_secure(ssh_buffer buffer); int ssh_buffer_add_ssh_string(ssh_buffer buffer, ssh_string string); @@ -80,8 +79,8 @@ int ssh_buffer_reinit(ssh_buffer buffer); /* ssh_buffer_get_rest returns a pointer to the current position into the buffer */ void *ssh_buffer_get(ssh_buffer buffer); -/* ssh_buffer_get_rest_len returns the number of bytes which can be read */ -uint32_t ssh_buffer_get_rest_len(ssh_buffer buffer); +/* ssh_buffer_get_len returns the number of bytes which can be read */ +LIBSSH_API uint32_t ssh_buffer_get_len(ssh_buffer buffer); /* buffer_read_*() returns the number of bytes read, except for ssh strings */ int ssh_buffer_get_u8(ssh_buffer buffer, uint8_t *data); diff --git a/src/buffer.c b/src/buffer.c index 722efb6..801cbd5 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -467,21 +467,6 @@ void *ssh_buffer_get(struct ssh_buffer_struct *buffer){ } /** - * @brief Get the length of the buffer, not counting position. - * - * @param[in] buffer The buffer to get the length from. - * - * @return The length of the buffer. - * - * @see ssh_buffer_get() - */ -uint32_t ssh_buffer_get_len(struct ssh_buffer_struct *buffer){ - return ssh_buffer_get_rest_len(buffer); -} - -/** - * @internal - * * @brief Get the length of the buffer from the current position. * * @param[in] buffer The buffer to get the length from. @@ -490,7 +475,7 @@ uint32_t ssh_buffer_get_len(struct ssh_buffer_struct *buffer){ * * @see ssh_buffer_get() */ -uint32_t ssh_buffer_get_rest_len(struct ssh_buffer_struct *buffer){ +uint32_t ssh_buffer_get_len(struct ssh_buffer_struct *buffer){ buffer_verify(buffer); return buffer->used - buffer->pos; } -- 2.5.0
[PATCH 00/24] clean up + expose some buffer functions (the ones necessary for writing an ssh-agent). | Fabiano Fidêncio <fidencio@xxxxxxxxxx> |