From 35b3a42ed9ca535297db01e1c39f2acc888bc0c3 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Mon, 21 Sep 2020 14:06:10 +0200 Subject: [PATCH] ntp: update comments with new RFCs --- ntp.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ntp.h b/ntp.h index 8044918..9a275ab 100644 --- a/ntp.h +++ b/ntp.h @@ -116,10 +116,11 @@ typedef struct { /* Enumeration for authentication modes of NTP packets */ typedef enum { NTP_AUTH_NONE = 0, /* No authentication */ - NTP_AUTH_SYMMETRIC, /* MAC using symmetric key (RFC 1305, RFC 5905) */ + NTP_AUTH_SYMMETRIC, /* NTP MAC or CMAC using a symmetric key + (RFC 1305, RFC 5905, RFC 8573) */ NTP_AUTH_MSSNTP, /* MS-SNTP authenticator field */ NTP_AUTH_MSSNTP_EXT, /* MS-SNTP extended authenticator field */ - NTP_AUTH_NTS, /* Network Time Security (RFC ????) */ + NTP_AUTH_NTS, /* Network Time Security (RFC 8915) */ } NTP_AuthMode; /* Structure describing an NTP packet */