ntp: pass server name to ntp_core instances

The server name will be needed for certificate verification in NTS-KE.
This commit is contained in:
Miroslav Lichvar
2019-03-13 17:32:40 +01:00
parent ca83d2a804
commit fa402a173a
4 changed files with 11 additions and 7 deletions

View File

@@ -320,7 +320,7 @@ add_source(NTP_Remote_Address *remote_addr, char *name, NTP_Source_Type type, So
assert(!found);
record = get_record(slot);
record->data = NCR_GetInstance(remote_addr, type, params);
record->data = NCR_CreateInstance(remote_addr, type, params, name);
record->remote_addr = NCR_GetRemoteAddress(record->data);
record->name = name ? Strdup(name) : NULL;
record->pool = pool;