mbed port of tinydtls

Committer:
ashleymills
Date:
Fri Oct 11 08:46:21 2013 +0000
Revision:
1:bc8a649bad13
Parent:
0:04990d454f45
Cleaned up all the debug stuff I added finding the hash table bug.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ashleymills 0:04990d454f45 1 /* dtls -- a very basic DTLS implementation
ashleymills 0:04990d454f45 2 *
ashleymills 0:04990d454f45 3 * Copyright (C) 2011--2013 Olaf Bergmann <bergmann@tzi.org>
ashleymills 0:04990d454f45 4 *
ashleymills 0:04990d454f45 5 * Permission is hereby granted, free of charge, to any person
ashleymills 0:04990d454f45 6 * obtaining a copy of this software and associated documentation
ashleymills 0:04990d454f45 7 * files (the "Software"), to deal in the Software without
ashleymills 0:04990d454f45 8 * restriction, including without limitation the rights to use, copy,
ashleymills 0:04990d454f45 9 * modify, merge, publish, distribute, sublicense, and/or sell copies
ashleymills 0:04990d454f45 10 * of the Software, and to permit persons to whom the Software is
ashleymills 0:04990d454f45 11 * furnished to do so, subject to the following conditions:
ashleymills 0:04990d454f45 12 *
ashleymills 0:04990d454f45 13 * The above copyright notice and this permission notice shall be
ashleymills 0:04990d454f45 14 * included in all copies or substantial portions of the Software.
ashleymills 0:04990d454f45 15 *
ashleymills 0:04990d454f45 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
ashleymills 0:04990d454f45 17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
ashleymills 0:04990d454f45 18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
ashleymills 0:04990d454f45 19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
ashleymills 0:04990d454f45 20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ashleymills 0:04990d454f45 21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
ashleymills 0:04990d454f45 22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
ashleymills 0:04990d454f45 23 * SOFTWARE.
ashleymills 0:04990d454f45 24 */
ashleymills 0:04990d454f45 25
ashleymills 0:04990d454f45 26 /**
ashleymills 0:04990d454f45 27 * @file dtls_time.h
ashleymills 0:04990d454f45 28 * @brief Clock Handling
ashleymills 0:04990d454f45 29 */
ashleymills 0:04990d454f45 30
ashleymills 0:04990d454f45 31 #ifndef _DTLS_TIME_H_
ashleymills 0:04990d454f45 32 #define _DTLS_TIME_H_
ashleymills 0:04990d454f45 33
ashleymills 0:04990d454f45 34 #include "config.h"
ashleymills 0:04990d454f45 35
ashleymills 0:04990d454f45 36 #ifdef HAVE_SYS_TIME_H
ashleymills 0:04990d454f45 37 #ifndef MBED
ashleymills 0:04990d454f45 38 #include <sys/time.h>
ashleymills 0:04990d454f45 39 #else
ashleymills 0:04990d454f45 40 #include <time.h>
ashleymills 0:04990d454f45 41 #endif
ashleymills 0:04990d454f45 42 #endif /* HAVE_SYS_TIME_H */
ashleymills 0:04990d454f45 43
ashleymills 0:04990d454f45 44 /**
ashleymills 0:04990d454f45 45 * @defgroup clock Clock Handling
ashleymills 0:04990d454f45 46 * Default implementation of internal clock. You should redefine this if
ashleymills 0:04990d454f45 47 * you do not have time() and gettimeofday().
ashleymills 0:04990d454f45 48 * @{
ashleymills 0:04990d454f45 49 */
ashleymills 0:04990d454f45 50
ashleymills 0:04990d454f45 51 #ifdef WITH_CONTIKI
ashleymills 0:04990d454f45 52 #include "clock.h"
ashleymills 0:04990d454f45 53
ashleymills 0:04990d454f45 54 typedef clock_time_t dtls_tick_t;
ashleymills 0:04990d454f45 55 #else /* WITH_CONTIKI */
ashleymills 0:04990d454f45 56
ashleymills 0:04990d454f45 57 #ifdef HAVE_TIME_H
ashleymills 0:04990d454f45 58 #include <time.h>
ashleymills 0:04990d454f45 59 #endif
ashleymills 0:04990d454f45 60
ashleymills 0:04990d454f45 61 #ifndef CLOCK_SECOND
ashleymills 0:04990d454f45 62 # define CLOCK_SECOND 1000
ashleymills 0:04990d454f45 63 #endif
ashleymills 0:04990d454f45 64
ashleymills 0:04990d454f45 65 typedef unsigned int dtls_tick_t;
ashleymills 0:04990d454f45 66
ashleymills 0:04990d454f45 67 #endif /* WITH_CONTIKI */
ashleymills 0:04990d454f45 68
ashleymills 0:04990d454f45 69 #ifndef DTLS_TICKS_PER_SECOND
ashleymills 0:04990d454f45 70 #define DTLS_TICKS_PER_SECOND CLOCK_SECOND
ashleymills 0:04990d454f45 71 #endif /* DTLS_TICKS_PER_SECOND */
ashleymills 0:04990d454f45 72
ashleymills 0:04990d454f45 73 void dtls_clock_init(void);
ashleymills 0:04990d454f45 74 void dtls_ticks(dtls_tick_t *t);
ashleymills 0:04990d454f45 75
ashleymills 0:04990d454f45 76 /** @} */
ashleymills 0:04990d454f45 77
ashleymills 0:04990d454f45 78 #endif /* _DTLS_TIME_H_ */