2d4e511ca2
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
18 lines
342 B
C
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) */
|