forked from obgm/libcoap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoap_encode.c
95 lines (79 loc) · 1.67 KB
/
coap_encode.c
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* coap_encode.c -- encoding and decoding of CoAP data types
*
* Copyright (C) 2010-2024 Olaf Bergmann <[email protected]>
*
* SPDX-License-Identifier: BSD-2-Clause
*
* This file is part of the CoAP library libcoap. Please see
* README for terms of use.
*/
/**
* @file coap_encode.c
* @brief Encoding and decoding Coap data types functions
*/
#include "coap3/coap_libcoap_build.h"
/* Carsten suggested this when fls() is not available: */
#ifndef HAVE_FLS
int
coap_fls(unsigned int i) {
return coap_flsll(i);
}
#endif
#ifndef HAVE_FLSLL
int
coap_flsll(long long j) {
unsigned long long i = (unsigned long long)j;
int n;
for (n = 0; i; n++)
i >>= 1;
return n;
}
#endif
unsigned int
coap_decode_var_bytes(const uint8_t *buf, size_t len) {
unsigned int i, n = 0;
for (i = 0; i < len; ++i)
n = (n << 8) + buf[i];
return n;
}
unsigned int
coap_encode_var_safe(uint8_t *buf, size_t length, unsigned int val) {
unsigned int n, i;
for (n = 0, i = val; i && n < sizeof(val); ++n)
i >>= 8;
if (n > length) {
assert(n <= length);
return 0;
}
i = n;
while (i--) {
buf[i] = val & 0xff;
val >>= 8;
}
return n;
}
uint64_t
coap_decode_var_bytes8(const uint8_t *buf, size_t len) {
unsigned int i;
uint64_t n = 0;
for (i = 0; i < len && i < sizeof(uint64_t); ++i)
n = (n << 8) + buf[i];
return n;
}
unsigned int
coap_encode_var_safe8(uint8_t *buf, size_t length, uint64_t val) {
unsigned int n, i;
uint64_t tval = val;
for (n = 0; tval && n < sizeof(val); ++n)
tval >>= 8;
if (n > length) {
assert(n <= length);
return 0;
}
i = n;
while (i--) {
buf[i] = val & 0xff;
val >>= 8;
}
return n;
}