Remove unused pkg dependancy
[platform/upstream/iotivity.git] / extlibs / tinydtls / dtls_time.c
1 /* dtls -- a very basic DTLS implementation
2  *
3  * Copyright (C) 2011--2013 Olaf Bergmann <bergmann@tzi.org>
4  *
5  * Permission is hereby granted, free of charge, to any person
6  * obtaining a copy of this software and associated documentation
7  * files (the "Software"), to deal in the Software without
8  * restriction, including without limitation the rights to use, copy,
9  * modify, merge, publish, distribute, sublicense, and/or sell copies
10  * of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be
14  * included in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25
26 /**
27  * @file dtls_time.c
28  * @brief Clock Handling
29  */
30
31 #include "tinydtls.h"
32 #include "dtls_config.h"
33 #include "dtls_time.h"
34
35 #ifdef WITH_CONTIKI
36 clock_time_t dtls_clock_offset;
37
38 void
39 dtls_clock_init(void) {
40   clock_init();
41   dtls_clock_offset = clock_time();
42 }
43
44 void
45 dtls_ticks(dtls_tick_t *t) {
46   *t = clock_time();
47 }
48
49 #else /* WITH_CONTIKI */
50 #ifdef _WIN32
51 #include <windows.h>
52 #endif
53
54 time_t dtls_clock_offset;
55
56 void
57 dtls_clock_init(void) {
58 #ifdef _WIN32
59   /* Use clock offset in milliseconds */
60   dtls_clock_offset = GetTickCount64();
61 #else
62 #ifdef HAVE_TIME_H
63   /* Use clock offset in seconds */
64   dtls_clock_offset = time(NULL);
65 #else
66 #  ifdef __GNUC__
67   /* Issue a warning when using gcc. Other prepropressors do 
68    *  not seem to have a similar feature. */ 
69 #   warning "cannot initialize clock"
70 #  endif
71   dtls_clock_offset = 0;
72 #endif
73 #endif
74 }
75
76 void dtls_ticks(dtls_tick_t *t) {
77 #ifdef _WIN32
78   *t = ((GetTickCount64() - dtls_clock_offset) * DTLS_TICKS_PER_SECOND / 1000);
79 #else
80 #ifdef HAVE_SYS_TIME_H
81   struct timeval tv;
82   gettimeofday(&tv, NULL);
83   *t = (tv.tv_sec - dtls_clock_offset) * DTLS_TICKS_PER_SECOND 
84     + (tv.tv_usec * DTLS_TICKS_PER_SECOND / 1000000);
85 #else
86 #error "clock not implemented"
87 #endif
88 #endif
89 }
90
91 #endif /* WITH_CONTIKI */
92
93