2 * $OpenBSD: src/usr.sbin/ntpd/ntp.h,v 1.11 2004/12/13 12:22:52 dtucker Exp $
3 * $DragonFly: src/usr.sbin/dntpd/ntp.h,v 1.2 2005/04/24 03:10:53 dillon Exp $
7 * Copyright (c) 2004 Henning Brauer <henning@openbsd.org>
8 * Copyright (c) 2004 Alexander Guy <alexander.guy@andern.org>
10 * Permission to use, copy, modify, and distribute this software for any
11 * purpose with or without fee is hereby granted, provided that the above
12 * copyright notice and this permission notice appear in all copies.
14 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
15 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
16 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
17 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
18 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
19 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
20 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26 /* Style borrowed from NTP ref/tcpdump and updated for SNTPv4 (RFC2030). */
32 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
33 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
35 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
37 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
40 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
41 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
42 * | Integer Part | Fraction Part |
43 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
57 * NOTE: bit order is kinda nasty, you can't read the bits as a byte
58 * XXX (RFC's tend to be broken that way).
61 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
62 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
63 * | Mode| VN |LI | Stratum | Poll | Precision |
64 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
65 * | Synchronizing Distance |
66 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
67 * | Synchronizing Dispersion |
68 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
69 * | Reference Clock Identifier |
70 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
72 * | Reference Timestamp (64 bits) |
74 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
76 * | Originate Timestamp (64 bits) |
78 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
80 * | Receive Timestamp (64 bits) |
82 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
84 * | Transmit Timestamp (64 bits) |
86 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
87 * | Key Identifier (optional) (32) |
88 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
91 * | Message Digest (optional) (128) |
94 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
98 #define NTP_DIGESTSIZE 16
99 #define NTP_MSGSIZE_NOAUTH 48
100 #define NTP_MSGSIZE (NTP_MSGSIZE_NOAUTH + 4 + NTP_DIGESTSIZE)
103 u_int8_t status
; /* status of local clock and leap info */
104 u_int8_t stratum
; /* Stratum level */
105 u_int8_t ppoll
; /* poll value */
107 struct s_fixedpt rootdelay
;
108 struct s_fixedpt dispersion
;
110 struct l_fixedpt reftime
;
111 struct l_fixedpt orgtime
;
112 struct l_fixedpt rectime
;
113 struct l_fixedpt xmttime
;
115 u_int8_t digest
[NTP_DIGESTSIZE
];
125 * Leap Second Codes (high order two bits)
127 #define LI_NOWARNING (0 << 6) /* no warning */
128 #define LI_PLUSSEC (1 << 6) /* add a second (61 seconds) */
129 #define LI_MINUSSEC (2 << 6) /* minus a second (59 seconds) */
130 #define LI_ALARM (3 << 6) /* alarm condition */
135 #define MODEMASK (7 << 0)
136 #define VERSIONMASK (7 << 3)
137 #define LIMASK (3 << 6)
142 #define MODE_RES0 0 /* reserved */
143 #define MODE_SYM_ACT 1 /* symmetric active */
144 #define MODE_SYM_PAS 2 /* symmetric passive */
145 #define MODE_CLIENT 3 /* client */
146 #define MODE_SERVER 4 /* server */
147 #define MODE_BROADCAST 5 /* broadcast */
148 #define MODE_RES1 6 /* reserved for NTP control message */
149 #define MODE_RES2 7 /* reserved for private use */
151 #define JAN_1970 2208988800UL /* 1970 - 1900 in seconds */
153 #define NTP_VERSION 4
154 #define NTP_MAXSTRATUM 15