FR_INTEGER_BOUND_CHECK("max_packet_size", inst->max_packet_size, >=, 1024);
FR_INTEGER_BOUND_CHECK("max_packet_size", inst->max_packet_size, <=, 65535);
+ /*
+ * Create the trie of clients for this socket.
+ */
+ inst->io.trie = fr_trie_alloc(inst);
+ if (!inst->io.trie) {
+ cf_log_err(conf, "Instantiation failed for \"%s\"", inst->io.app_io->name);
+ return -1;
+ }
+
/*
* Instantiate the master io submodule
*/
}
}
- /*
- * Create the trie of clients for this socket.
- */
- inst->io.trie = fr_trie_alloc(inst);
- if (!inst->io.trie) {
- cf_log_err(conf, "Instantiation failed for \"%s\"", inst->io.app_io->name);
- return -1;
- }
-
return 0;
}