mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-23 10:37:43 -04:00
fix: nil: Cleanup setting netmgr ports from isc_managers_create()
This is now duplicate as the default ports are already set in isc_netmgr_create(). Merge branch 'ondrej/mr11569-followup-cleanup' into 'main' See merge request isc-projects/bind9!11576
This commit is contained in:
commit
92d3c7d011
1 changed files with 0 additions and 8 deletions
|
|
@ -19,17 +19,9 @@
|
|||
|
||||
void
|
||||
isc_managers_create(uint32_t workers) {
|
||||
in_port_t port_low, port_high;
|
||||
|
||||
isc_loopmgr_create(isc_g_mctx, workers);
|
||||
isc_netmgr_create(isc_g_mctx);
|
||||
isc_rwlock_setworkers(workers);
|
||||
|
||||
isc_net_getportrange(AF_INET, &port_low, &port_high);
|
||||
isc_netmgr_portrange(AF_INET, port_low, port_high);
|
||||
|
||||
isc_net_getportrange(AF_INET6, &port_low, &port_high);
|
||||
isc_netmgr_portrange(AF_INET6, port_low, port_high);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue