Closes #41022.
Bug not in any released version of Tor.
But for now, relay families should configure
both this option _and_ MyFamily, so older clients
will still recognize the relays' family membership.
+ +
+ (Note that if the seccomp2 Sandbox feature is enabled,
+ it is not possible to change the key filenames while Tor is running.)
[[Nickname]] **Nickname** __name__::
Set the server's nickname to \'name'. Nicknames must be between 1 and 19
OPEN("/etc/hosts");
OPEN("/proc/meminfo");
+ {
+ smartlist_t *family_id_files =
+ list_family_key_files(options, options->KeyDirectory);
+
+ SMARTLIST_FOREACH(family_id_files, const char *, fn,
+ OPEN(fn));
+
+ SMARTLIST_FOREACH(family_id_files, char *, cp, tor_free(cp));
+ smartlist_free(family_id_files);
+ }
+
if (options->BridgeAuthoritativeDir)
OPEN_DATADIR_SUFFIX("networkstatus-bridges", ".tmp");