basic/iovec-util: always call the iovec "iovec"

We were using "i", "iov", and "iovec" in variuos places. Let's be
consistent.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2023-10-23 14:51:43 +02:00
parent f04333210b
commit 1ca0b482b6
2 changed files with 15 additions and 15 deletions

View File

@@ -3,24 +3,24 @@
#include "iovec-util.h"
#include "string-util.h"
size_t iovec_total_size(const struct iovec *i, size_t n) {
size_t iovec_total_size(const struct iovec *iovec, size_t n) {
size_t sum = 0;
assert(i || n == 0);
assert(iovec || n == 0);
FOREACH_ARRAY(j, i, n)
FOREACH_ARRAY(j, iovec, n)
sum += j->iov_len;
return sum;
}
bool iovec_increment(struct iovec *i, size_t n, size_t k) {
assert(i || n == 0);
bool iovec_increment(struct iovec *iovec, size_t n, size_t k) {
assert(iovec || n == 0);
/* Returns true if there is nothing else to send (bytes written cover all of the iovec),
* false if there's still work to do. */
FOREACH_ARRAY(j, i, n) {
FOREACH_ARRAY(j, iovec, n) {
size_t sub;
if (j->iov_len == 0)
@@ -62,12 +62,12 @@ char* set_iovec_string_field_free(struct iovec *iovec, size_t *n_iovec, const ch
return x;
}
void iovec_array_free(struct iovec *iov, size_t n) {
if (!iov)
void iovec_array_free(struct iovec *iovec, size_t n) {
if (!iovec)
return;
for (size_t i = 0; i < n; i++)
free(iov[i].iov_base);
free(iovec[i].iov_base);
free(iov);
free(iovec);
}

View File

@@ -8,9 +8,9 @@
#include "alloc-util.h"
#include "macro.h"
size_t iovec_total_size(const struct iovec *i, size_t n);
size_t iovec_total_size(const struct iovec *iovec, size_t n);
bool iovec_increment(struct iovec *i, size_t n, size_t k);
bool iovec_increment(struct iovec *iovec, size_t n, size_t k);
#define IOVEC_NULL (const struct iovec) {}
@@ -38,11 +38,11 @@ static inline void iovec_done_erase(struct iovec *iovec) {
iovec->iov_len = 0;
}
static inline bool iovec_is_set(const struct iovec *iov) {
return iov && iov->iov_len > 0 && iov->iov_base;
static inline bool iovec_is_set(const struct iovec *iovec) {
return iovec && iovec->iov_len > 0 && iovec->iov_base;
}
char* set_iovec_string_field(struct iovec *iovec, size_t *n_iovec, const char *field, const char *value);
char* set_iovec_string_field_free(struct iovec *iovec, size_t *n_iovec, const char *field, char *value);
void iovec_array_free(struct iovec *iov, size_t n);
void iovec_array_free(struct iovec *iovec, size_t n);