aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/net.c
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-08-30 13:52:18 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2022-08-30 13:52:18 +0200
commit43f109302aa119d87a4bb8ab1cabb1bbabf3b74a (patch)
tree41d62ee91d35a1e6ee9af1d47066a0bfa5e4b4a7 /src/net.c
parentnet: error out unless net_recv_all receives all bytes (diff)
downloadcimple-43f109302aa119d87a4bb8ab1cabb1bbabf3b74a.tar.gz
cimple-43f109302aa119d87a4bb8ab1cabb1bbabf3b74a.zip
net: removed unused API
Diffstat (limited to 'src/net.c')
-rw-r--r--src/net.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/net.c b/src/net.c
index 01afd8f..b52036e 100644
--- a/src/net.c
+++ b/src/net.c
@@ -240,27 +240,3 @@ free_buf:
fail:
return -1;
}
-
-int net_recv_static(int fd, void *buf, size_t len)
-{
- void *actual_buf;
- uint32_t actual_len;
- int ret = 0;
-
- ret = net_recv_buf(fd, &actual_buf, &actual_len);
- if (ret < 0)
- return ret;
-
- if (actual_len != len) {
- print_error("Expected message length: %lu, actual: %u\n", len, actual_len);
- ret = -1;
- goto free_buf;
- }
-
- memcpy(buf, actual_buf, len);
-
-free_buf:
- free(actual_buf);
-
- return ret;
-}