The default values are currently set to 30 seconds, use nsupdate
default (or overriden using the -t option) timeout value instead.
int
main(int argc, char **argv) {
+ uint32_t timeoutms;
+
style = &dns_master_style_debug;
input = stdin;
parse_args(argc, argv);
+ /* Set the network manager timeouts in milliseconds. */
+ timeoutms = timeout * 1000;
+ isc_nm_settimeouts(netmgr, timeoutms, timeoutms, timeoutms, timeoutms);
+
setup_system();
isc_loopmgr_setup(loopmgr, getinput, NULL);