-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnf_time.c
66 lines (58 loc) · 1.64 KB
/
nf_time.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
/* Copyright 2014 Andrew Bates
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <stdio.h>
#include "nf_time.h"
static unsigned long epoch_sec;
static unsigned long epoch_msec;
static unsigned long sys_boot_sec;
static unsigned long sys_boot_msec;
/**
* Reset the time to zero
*/
void time_reset() {
epoch_sec = 0;
epoch_msec = 0;
sys_boot_sec = 0;
sys_boot_msec = 0;
}
/**
* Update the internal time structures. This makes
* no change to the actual syste time, only to the
* way we generate netflow records with respect to
* time measured in the pcap
*/
void time_update(const struct timeval *new_time) {
if (epoch_sec == 0) {
sys_boot_sec = new_time->tv_sec;
sys_boot_msec = new_time->tv_usec / 1000;
}
epoch_sec = new_time->tv_sec;
epoch_msec = new_time->tv_usec / 1000;
}
/**
* Get the milliseconds relative to the last boot
*/
unsigned long time_sysuptime() {
return (1000 * (epoch_sec - sys_boot_sec)) + epoch_msec - sys_boot_msec;
}
/**
* Get the current time in seconds since 1/1/1970
*/
unsigned long time_epoch_sec() {
return epoch_sec;
}
unsigned long time_epoch_msec() {
return epoch_msec;
}