From 44cdd103d235b6601d160631bc35ebead09d530f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 29 Apr 2023 15:52:27 +0200 Subject: net: use size instead of length for variable names --- src/net.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/net.c b/src/net.c index a1aa941..08cc763 100644 --- a/src/net.c +++ b/src/net.c @@ -146,11 +146,11 @@ int net_connect(const char *host, const char *port) return socket_fd; } -static ssize_t net_send(int fd, const void *buf, size_t len) +static ssize_t net_send(int fd, const void *buf, size_t size) { static const int flags = MSG_NOSIGNAL; - ssize_t ret = send(fd, buf, len, flags); + ssize_t ret = send(fd, buf, size, flags); if (ret < 0) { log_errno("send"); return -1; @@ -159,12 +159,12 @@ static ssize_t net_send(int fd, const void *buf, size_t len) return ret; } -int net_send_all(int fd, const void *buf, size_t len) +int net_send_all(int fd, const void *buf, size_t size) { size_t sent_total = 0; - while (sent_total < len) { - ssize_t sent_now = net_send(fd, (const char *)buf + sent_total, len - sent_total); + while (sent_total < size) { + ssize_t sent_now = net_send(fd, (const char *)buf + sent_total, size - sent_total); if (sent_now < 0) return -1; sent_total += sent_now; @@ -173,12 +173,12 @@ int net_send_all(int fd, const void *buf, size_t len) return 0; } -int net_recv_all(int fd, void *buf, size_t len) +int net_recv_all(int fd, void *buf, size_t size) { ssize_t read_total = 0; - while ((size_t)read_total < len) { - ssize_t read_now = read(fd, buf, len); + while ((size_t)read_total < size) { + ssize_t read_now = read(fd, buf, size); if (!read_now) break; @@ -190,8 +190,8 @@ int net_recv_all(int fd, void *buf, size_t len) read_total += read_now; } - if ((size_t)read_total < len) { - log_err("Received only %zd bytes out of %zu\n", read_total, len); + if ((size_t)read_total < size) { + log_err("Received only %zd bytes out of %zu\n", read_total, size); return -1; } -- cgit v1.2.3