Version 0.5.0 of tinydtls

Dependents:   tinydtls_test_cellular tinydtls_test_ethernet tiny-dtls

Committer:
ashleymills
Date:
Wed Feb 12 09:30:16 2014 +0000
Revision:
1:598a56fe116e
Parent:
0:ff9ebe0cf0e9
Explicitly removed something instead of relying on MACRO to disable it. Mbed can't use it.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ashleymills 0:ff9ebe0cf0e9 1 /* dtls -- a very basic DTLS implementation
ashleymills 0:ff9ebe0cf0e9 2 *
ashleymills 0:ff9ebe0cf0e9 3 * Copyright (C) 2011 Olaf Bergmann <bergmann@tzi.org>
ashleymills 0:ff9ebe0cf0e9 4 *
ashleymills 0:ff9ebe0cf0e9 5 * Permission is hereby granted, free of charge, to any person
ashleymills 0:ff9ebe0cf0e9 6 * obtaining a copy of this software and associated documentation
ashleymills 0:ff9ebe0cf0e9 7 * files (the "Software"), to deal in the Software without
ashleymills 0:ff9ebe0cf0e9 8 * restriction, including without limitation the rights to use, copy,
ashleymills 0:ff9ebe0cf0e9 9 * modify, merge, publish, distribute, sublicense, and/or sell copies
ashleymills 0:ff9ebe0cf0e9 10 * of the Software, and to permit persons to whom the Software is
ashleymills 0:ff9ebe0cf0e9 11 * furnished to do so, subject to the following conditions:
ashleymills 0:ff9ebe0cf0e9 12 *
ashleymills 0:ff9ebe0cf0e9 13 * The above copyright notice and this permission notice shall be
ashleymills 0:ff9ebe0cf0e9 14 * included in all copies or substantial portions of the Software.
ashleymills 0:ff9ebe0cf0e9 15 *
ashleymills 0:ff9ebe0cf0e9 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
ashleymills 0:ff9ebe0cf0e9 17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
ashleymills 0:ff9ebe0cf0e9 18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ashleymills 0:ff9ebe0cf0e9 19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
ashleymills 0:ff9ebe0cf0e9 20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ashleymills 0:ff9ebe0cf0e9 21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
ashleymills 0:ff9ebe0cf0e9 22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
ashleymills 0:ff9ebe0cf0e9 23 * SOFTWARE.
ashleymills 0:ff9ebe0cf0e9 24 */
ashleymills 0:ff9ebe0cf0e9 25
ashleymills 0:ff9ebe0cf0e9 26 #ifndef _NUMERIC_H_
ashleymills 0:ff9ebe0cf0e9 27 #define _NUMERIC_H_
ashleymills 0:ff9ebe0cf0e9 28
ashleymills 0:ff9ebe0cf0e9 29 #include <stdint.h>
ashleymills 0:ff9ebe0cf0e9 30
ashleymills 0:ff9ebe0cf0e9 31 #ifndef min
ashleymills 0:ff9ebe0cf0e9 32 #define min(A,B) ((A) <= (B) ? (A) : (B))
ashleymills 0:ff9ebe0cf0e9 33 #endif
ashleymills 0:ff9ebe0cf0e9 34
ashleymills 0:ff9ebe0cf0e9 35 #ifndef max
ashleymills 0:ff9ebe0cf0e9 36 #define max(A,B) ((A) < (B) ? (B) : (A))
ashleymills 0:ff9ebe0cf0e9 37 #endif
ashleymills 0:ff9ebe0cf0e9 38
ashleymills 0:ff9ebe0cf0e9 39 /**
ashleymills 0:ff9ebe0cf0e9 40 * Increments given \p Var of type \p Type by \c 1.
ashleymills 0:ff9ebe0cf0e9 41 *
ashleymills 0:ff9ebe0cf0e9 42 * \hideinitializer
ashleymills 0:ff9ebe0cf0e9 43 */
ashleymills 0:ff9ebe0cf0e9 44 #define inc_uint(Type,Var) { \
ashleymills 0:ff9ebe0cf0e9 45 int i = sizeof(Type); \
ashleymills 0:ff9ebe0cf0e9 46 while (i && !++((Var)[--i])); \
ashleymills 0:ff9ebe0cf0e9 47 }
ashleymills 0:ff9ebe0cf0e9 48
ashleymills 0:ff9ebe0cf0e9 49 /* this one is for consistency... */
ashleymills 0:ff9ebe0cf0e9 50 #define dtls_int_to_uint8(Field,Value) do { \
ashleymills 0:ff9ebe0cf0e9 51 *(unsigned char*)(Field) = (Value) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 52 } while(0)
ashleymills 0:ff9ebe0cf0e9 53
ashleymills 0:ff9ebe0cf0e9 54 #define dtls_int_to_uint16(Field,Value) do { \
ashleymills 0:ff9ebe0cf0e9 55 *(unsigned char*)(Field) = ((Value) >> 8) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 56 *(((unsigned char*)(Field))+1) = ((Value) & 0xff); \
ashleymills 0:ff9ebe0cf0e9 57 } while(0)
ashleymills 0:ff9ebe0cf0e9 58
ashleymills 0:ff9ebe0cf0e9 59 #define dtls_int_to_uint24(Field,Value) do { \
ashleymills 0:ff9ebe0cf0e9 60 *(unsigned char*)(Field) = ((Value) >> 16) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 61 dtls_int_to_uint16((((unsigned char*)(Field))+1),Value); \
ashleymills 0:ff9ebe0cf0e9 62 } while(0)
ashleymills 0:ff9ebe0cf0e9 63
ashleymills 0:ff9ebe0cf0e9 64 #define dtls_int_to_uint32(Field,Value) do { \
ashleymills 0:ff9ebe0cf0e9 65 *(unsigned char*)(Field) = ((Value) >> 24) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 66 *(((unsigned char*)(Field))+1) = ((Value) >> 16) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 67 *(((unsigned char*)(Field))+2) = ((Value) >> 8) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 68 *(((unsigned char*)(Field))+3) = (Value) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 69 } while(0)
ashleymills 0:ff9ebe0cf0e9 70
ashleymills 0:ff9ebe0cf0e9 71 #define dtls_ulong_to_uint48(Field,Value) do { \
ashleymills 0:ff9ebe0cf0e9 72 *(unsigned char*)(Field) = ((Value) >> 40) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 73 *(((unsigned char*)(Field))+1) = ((Value) >> 32) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 74 *(((unsigned char*)(Field))+2) = ((Value) >> 24) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 75 *(((unsigned char*)(Field))+3) = ((Value) >> 16) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 76 *(((unsigned char*)(Field))+4) = ((Value) >> 8) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 77 *(((unsigned char*)(Field))+5) = (Value) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 78 } while(0)
ashleymills 0:ff9ebe0cf0e9 79
ashleymills 0:ff9ebe0cf0e9 80 #define dtls_ulong_to_uint64(Field,Value) do { \
ashleymills 0:ff9ebe0cf0e9 81 *(unsigned char*)(Field) = ((Value) >> 56) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 82 *(((unsigned char*)(Field))+1) = ((Value) >> 48) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 83 *(((unsigned char*)(Field))+2) = ((Value) >> 40) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 84 *(((unsigned char*)(Field))+3) = ((Value) >> 32) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 85 *(((unsigned char*)(Field))+4) = ((Value) >> 24) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 86 *(((unsigned char*)(Field))+5) = ((Value) >> 16) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 87 *(((unsigned char*)(Field))+6) = ((Value) >> 8) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 88 *(((unsigned char*)(Field))+7) = (Value) & 0xff; \
ashleymills 0:ff9ebe0cf0e9 89 } while(0)
ashleymills 0:ff9ebe0cf0e9 90
ashleymills 0:ff9ebe0cf0e9 91 #define dtls_uint8_to_int(Field) \
ashleymills 0:ff9ebe0cf0e9 92 (*(unsigned char*)(Field) & 0xFF)
ashleymills 0:ff9ebe0cf0e9 93
ashleymills 0:ff9ebe0cf0e9 94 #define dtls_uint16_to_int(Field) \
ashleymills 0:ff9ebe0cf0e9 95 (((*(unsigned char*)(Field)) << 8) | (*(((unsigned char*)(Field))+1)))
ashleymills 0:ff9ebe0cf0e9 96
ashleymills 0:ff9ebe0cf0e9 97 #define dtls_uint24_to_int(Field) \
ashleymills 0:ff9ebe0cf0e9 98 (((*(((unsigned char*)(Field)))) << 16) \
ashleymills 0:ff9ebe0cf0e9 99 | ((*(((unsigned char*)(Field))+1)) << 8) \
ashleymills 0:ff9ebe0cf0e9 100 | ((*(((unsigned char*)(Field))+2))))
ashleymills 0:ff9ebe0cf0e9 101
ashleymills 0:ff9ebe0cf0e9 102 #define dtls_uint32_to_int(Field) \
ashleymills 0:ff9ebe0cf0e9 103 ((*(unsigned char*)(Field)) << 24) \
ashleymills 0:ff9ebe0cf0e9 104 | ((*(((unsigned char*)(Field))+1)) << 16) \
ashleymills 0:ff9ebe0cf0e9 105 | ((*(((unsigned char*)(Field))+2)) << 8) \
ashleymills 0:ff9ebe0cf0e9 106 | ((*(((unsigned char*)(Field))+3)))
ashleymills 0:ff9ebe0cf0e9 107
ashleymills 0:ff9ebe0cf0e9 108 #define dtls_uint48_to_ulong(Field) \
ashleymills 0:ff9ebe0cf0e9 109 (((uint64_t) *(unsigned char*)(Field)) << 40) \
ashleymills 0:ff9ebe0cf0e9 110 | (((uint64_t) *(((unsigned char*)(Field))+1)) << 32) \
ashleymills 0:ff9ebe0cf0e9 111 | (((uint64_t) *(((unsigned char*)(Field))+2)) << 24) \
ashleymills 0:ff9ebe0cf0e9 112 | (((uint64_t) *(((unsigned char*)(Field))+3)) << 16) \
ashleymills 0:ff9ebe0cf0e9 113 | (((uint64_t) *(((unsigned char*)(Field))+4)) << 8) \
ashleymills 0:ff9ebe0cf0e9 114 | (((uint64_t) *(((unsigned char*)(n))+5)))
ashleymills 0:ff9ebe0cf0e9 115
ashleymills 0:ff9ebe0cf0e9 116 #endif /* _NUMERIC_H_ */