diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-09-08 03:07:44 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-09-08 03:07:44 +0200 |
commit | c31e14954b158351b11f886332229a61fff2e5d1 (patch) | |
tree | 00d35ff7a89377b8317353955ce64b4f219549c7 /src/macro.h | |
parent | e082d6c8d80f3f06d72ae838ee4a1213f108a5e4 (diff) |
log: support logging into SOCK_STREAM /dev/log sockets for comaptibility with syslog-ng
Diffstat (limited to 'src/macro.h')
-rw-r--r-- | src/macro.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/macro.h b/src/macro.h index acfc277517..44b481775d 100644 --- a/src/macro.h +++ b/src/macro.h @@ -24,6 +24,8 @@ #include <assert.h> #include <sys/types.h> +#include <sys/uio.h> +#include <inttypes.h> #define _printf_attr_(a,b) __attribute__ ((format (printf, a, b))) #define _sentinel_ __attribute__ ((sentinel)) @@ -134,6 +136,34 @@ static inline size_t ALIGN(size_t l) { _i->iov_len = strlen(_s); \ } while(false); +static inline size_t IOVEC_TOTAL_SIZE(const struct iovec *i, unsigned n) { + unsigned j; + size_t r = 0; + + for (j = 0; j < n; j++) + r += i[j].iov_len; + + return r; +} + +static inline size_t IOVEC_INCREMENT(struct iovec *i, unsigned n, size_t k) { + unsigned j; + + for (j = 0; j < n; j++) { + size_t sub; + + if (_unlikely_(k <= 0)) + break; + + sub = MIN(i[j].iov_len, k); + i[j].iov_len -= sub; + i[j].iov_base = (uint8_t*) i[j].iov_base + sub; + k -= sub; + } + + return k; +} + #include "log.h" #endif |