aboutsummaryrefslogtreecommitdiff
path: root/include/ntp_psl.h
blob: a0c2662d44c72de67503408b16db2b0fed123058 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef NTP_PSL_H
#define NTP_PSL_H


/*
 * Poll Skew List Item
 */

typedef struct psl_item_tag {
	int		sub;	/* int or short?  unsigned is OK, but why? */
	int		qty;	/* int or short?  unsigned is OK, but why? */
	int		msk;	/* int or short?  unsigned is OK */
} psl_item;

int get_pollskew(int, psl_item *);

#endif	/* !defined(NTP_PSL_H) */