-
Notifications
You must be signed in to change notification settings - Fork 2
/
sntp.h
105 lines (95 loc) · 3.23 KB
/
sntp.h
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*-
* Copyright (c) 2007 TANDBERG Telecom AS
* Copyright (c) 2008-2009 Dag-Erling Smørgrav
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* Author: Dag-Erling Smørgrav <[email protected]>
*
* $Id$
*/
#ifndef SNTP_H_INCLUDED
#define SNTP_H_INCLUDED
struct sntp;
/*
* Structure of an NTP timestamp
*/
struct ntptime {
uint32_t sec;
uint32_t frac;
};
/*
* Useful epochs, in seconds since NTP epoch
*/
#define UNIX_EPOCH 2208988800UL /* 1970-01-01 00:00:00 UTC */
#define UTC_EPOCH 2272060800UL /* 1972-01-01 00:00:00 UTC */
/* clear a struct ntptime */
#define nt_zero(nt) \
(void)((nt).sec = (nt).frac = 0)
/* comparison macros */
#define nt_cmp(nt1, op, nt2) \
((nt1).sec op (nt2).sec && (nt1).frac op (nt2).frac)
#define nt_lt(nt1, nt2) \
nt_cmp(nt1, <, nt2)
#define nt_le(nt1, nt2) \
nt_cmp(nt1, <=, nt2)
#define nt_eq(nt1, nt2) \
nt_cmp(nt1, ==, nt2)
#define nt_ge(nt1, nt2) \
nt_cmp(nt1, >=, nt2)
#define nt_gt(nt1, nt2) \
nt_cmp(nt1, >, nt2)
/*
* Conversion functions
*/
void tv2nt(struct timeval *, struct ntptime *);
void nt2tv(struct ntptime *, struct timeval *);
void ts2nt(struct timespec *, struct ntptime *);
void nt2ts(struct ntptime *, struct timespec *);
void h2n_nt(struct ntptime *);
void n2h_nt(struct ntptime *);
/*
* Error codes
*/
typedef enum sntp_err {
SNTP_OK, /* fine */
SNTP_SYSERR, /* check errno */
SNTP_DNSERR, /* dns error */
SNTP_NOREQ, /* no request sent */
SNTP_NORESP, /* no response received */
SNTP_BADRESP, /* invalid response received */
SNTP_LAME, /* server is lame / unsynchronized */
SNTP_BACKOFF, /* polling too frequently */
} sntp_err_t;
/*
* SNTP client
*/
struct sntp *sntp_create(const char *, const char *, const char *, const char *);
int sntp_open(struct sntp *);
void sntp_close(struct sntp *);
void sntp_destroy(struct sntp *);
sntp_err_t sntp_send(struct sntp *);
sntp_err_t sntp_pending(struct sntp *);
sntp_err_t sntp_poll(struct sntp *, int);
sntp_err_t sntp_recv(struct sntp *, struct ntptime *);
#endif