You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems unnecessary to keep a separate list of names to addresses when libunbound can already do that using ub_ctx_hosts(), especially when the current implementation ignores /etc/hosts and uses a similar but incompatible format. Less code to maintain and more consistency with the host environment are good things.
Replace the nametable with libunbound. Load /etc/hosts and any nametable files from the usual locations.
Downsides:
Can't be reloaded or cleared once the context has been used to perform name resolution. Was that ever used?
New format isn't backwards incompatible. Will need to update ansible templates and maintain the deprecated nametable format for some time.
The text was updated successfully, but these errors were encountered:
It seems unnecessary to keep a separate list of names to addresses when libunbound can already do that using
ub_ctx_hosts()
, especially when the current implementation ignores/etc/hosts
and uses a similar but incompatible format. Less code to maintain and more consistency with the host environment are good things.Replace the nametable with libunbound. Load
/etc/hosts
and any nametable files from the usual locations.Downsides:
The text was updated successfully, but these errors were encountered: