#ifndef __ROUTE_HPP__ #define __ROUTE_HPP__ // Call this near the end of ecall_config_load, but before // comms_init_nodestate. Returns true on success, false on failure. bool route_init(); // For a given other node, set the received message handler to the first // message we would expect from them, given their roles and our roles. void route_init_msg_handler(nodenum_t node_num); #endif