ntp: add function to change authentication-specific address

When an NTS source will be replaced, the authentication-specific address
of the NTS-KE server will need to be changed too.
This commit is contained in:
Miroslav Lichvar
2020-02-04 11:50:29 +01:00
parent e8062b7ff1
commit 86d29221f3
3 changed files with 20 additions and 0 deletions

View File

@@ -422,3 +422,17 @@ NAU_CheckResponseAuth(NAU_Instance instance, NTP_Packet *response, NTP_PacketInf
return 1;
}
/* ================================================== */
void
NAU_ChangeAddress(NAU_Instance instance, IPAddr *address)
{
switch (instance->mode) {
case NTP_AUTH_NONE:
case NTP_AUTH_SYMMETRIC:
break;
default:
assert(0);
}
}