xref: /netbsd-src/external/bsd/ntp/dist/include/ntp_psl.h (revision ccd9df534e375a4366c5b55f23782053c7a98d82)
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