xref: /netbsd-src/external/bsd/ntp/dist/include/ntp_psl.h (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /*	$NetBSD: ntp_psl.h,v 1.2 2020/05/25 20:47:19 christos Exp $	*/
2 
3 #ifndef NTP_PSL_H
4 #define NTP_PSL_H
5 
6 
7 /*
8  * Poll Skew List Item
9  */
10 
11 typedef struct psl_item_tag {
12 	int		sub;	/* int or short?  unsigned is OK, but why? */
13 	int		qty;	/* int or short?  unsigned is OK, but why? */
14 	int		msk;	/* int or short?  unsigned is OK */
15 } psl_item;
16 
17 int get_pollskew(int, psl_item *);
18 
19 #endif	/* !defined(NTP_PSL_H) */
20