-
Notifications
You must be signed in to change notification settings - Fork 9
/
encode.c
48 lines (38 loc) · 866 Bytes
/
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
/* encode.c -- encoding and decoding of CoAP data types
*
* Copyright (C) 2010,2011 Olaf Bergmann <bergmann@tzi.org>
*
* This file is part of the CoAP library libcoap. Please see
* README for terms of use.
*/
#ifndef NDEBUG
# include <stdio.h>
#endif
#include "config.h"
#include "encode.h"
/* Carsten suggested this when fls() is not available: */
int coap_fls(unsigned int i) {
int n;
for (n = 0; i; n++)
i >>= 1;
return n;
}
unsigned int
coap_decode_var_bytes(unsigned char *buf,unsigned int len) {
unsigned int i, n = 0;
for (i = 0; i < len; ++i)
n = (n << 8) + buf[i];
return n;
}
unsigned int
coap_encode_var_bytes(unsigned char *buf, unsigned int val) {
unsigned int n, i;
for (n = 0, i = val; i && n < sizeof(val); ++n)
i >>= 8;
i = n;
while (i--) {
buf[i] = val & 0xff;
val >>= 8;
}
return n;
}