blob: 4f7db8113b3087e03cd46e1eb6bfdfab3ffc3c1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#pragma once
/** @file bin.h */
/**
* helper file for binary data
*
* - fix endianness with functions inspired by UNIX arpa/inet.h
* - convert uint16_t and uint32_t to w2_s_bin
*/
#include <stdint.h>
extern uint8_t g_w2_endianness;
#define W2_CAST_BIN(type, in, out) type *out = (type *)&in->data;
#define W2_CREATE_MSG_BIN(type, normal, bin) W2_CREATE_MSG_SIZE_BIN(type, sizeof(type), normal, bin)
#define W2_CREATE_MSG_SIZE_BIN(type, size, normal, bin) \
w2_s_bin *bin = malloc(sizeof(w2_s_bin) + size); \
bin->bytes = size; \
type *normal = (type *)&bin->data;
typedef struct {
uint16_t bytes;
uint8_t data[];
} w2_s_bin;
/** allocate new w2_s_bin struct and fill with `*data` for `bytes` bytes */
w2_s_bin *w2_bin_s_alloc(uint16_t bytes, uint8_t *data);
/** concatenate 2 w2_s_bin structs, deallocates `a` and `b` */
w2_s_bin *w2_bin_s_cat(w2_s_bin *a, w2_s_bin *b);
w2_s_bin *w2_bin_from_uint8_t(uint8_t data);
w2_s_bin *w2_bin_from_uint16_t(uint16_t data);
w2_s_bin *w2_bin_from_uint32_t(uint32_t data);
/** convert 32-bit value from host endian to network (big-endian) */
uint32_t w2_bin_hton32(uint32_t h32);
/** convert 16-bit value from host endian to network (big-endian) */
uint16_t w2_bin_hton16(uint16_t h16);
/** convert 32-bit value from network (big-endian) to host endian */
uint32_t w2_bin_ntoh32(uint32_t n32);
/** convert 16-bit value from network (big-endian) to host endian */
uint16_t w2_bin_ntoh16(uint16_t n16);
/** replace 32-bit value from host endian to network (big-endian) */
void w2_bin_repl_hton32(uint32_t *h32);
/** replace 16-bit value from host endian to network (big-endian) */
void w2_bin_repl_hton16(uint16_t *h16);
/** replace 32-bit value from network (big-endian) to host endian */
void w2_bin_repl_ntoh32(uint32_t *n32);
/** replace 16-bit value from network (big-endian) to host endian */
void w2_bin_repl_ntoh16(uint16_t *n16);
|