freebsd-skq/contrib/ntp/include/ntp_psl.h
Cy Schubert 2d4e511ca2 MFV r358616:
Update ntp-4.2.8p13 --> 4.2.8p14.

The advisory can be found at:
http://support.ntp.org/bin/view/Main/SecurityNotice#\
March_2020_ntp_4_2_8p14_NTP_Rele

No CVEs have been documented yet.

MFC after:	now
Security:	http://support.ntp.org/bin/view/Main/NtpBug3610
		http://support.ntp.org/bin/view/Main/NtpBug3596
		http://support.ntp.org/bin/view/Main/NtpBug3592
2020-03-04 21:45:12 +00:00

18 lines
342 B
C

#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) */