/* Copyright (C) 2010, 2011 Tony Garnock-Jones. All rights reserved. */ #ifndef cmsg_private_h #define cmsg_private_h typedef struct cmsg_bytes_t { size_t len; unsigned char *bytes; } cmsg_bytes_t; #define CMSG_BYTES(length, bytes_ptr) ((cmsg_bytes_t) { \ .len = (length), \ .bytes = (unsigned char *) (bytes_ptr) \ }) #define EMPTY_BYTES CMSG_BYTES(0, NULL) static inline cmsg_bytes_t cmsg_cstring_bytes(char const *cstr) { cmsg_bytes_t result; result.len = strlen(cstr); result.bytes = (void *) cstr; return result; } #define CMSG_UUID_BUF_SIZE 36 extern int gen_uuid(unsigned char *uuid_buf); /* must be exactly CMSG_UUID_BUF_SIZE bytes long */ extern cmsg_bytes_t cmsg_bytes_malloc_dup(cmsg_bytes_t src); extern cmsg_bytes_t cmsg_bytes_malloc(size_t amount); extern void cmsg_bytes_free(cmsg_bytes_t bytes); extern int cmsg_bytes_cmp(cmsg_bytes_t a, cmsg_bytes_t b); #define ICHECK(result, message) do { if ((result) == -1) { perror(message); exit(2); } } while (0) #define BCHECK(result, message) do { if ((result) == 0) { perror(message); exit(2); } } while (0) #define PCHECK(result, message) do { if ((result) == NULL) { perror(message); exit(2); } } while (0) extern __attribute__((noreturn)) void die(char const *format, ...); extern void warn(char const *format, ...); extern void info(char const *format, ...); #endif