do more things at init time

This commit is contained in:
Alex 2023-03-09 14:41:16 +01:00
parent 3acf041d00
commit b06e50a5be
1 changed files with 9 additions and 2 deletions

View File

@ -201,8 +201,8 @@ impl Daemon {
}
fn run(&self) -> Result<()> {
if let Err(e) = self.state.lock().unwrap().setup_wg_peers(self, 0) {
error!("Error initializing wireguard peers: {}", e);
if let Err(e) = self.initialize() {
error!("Error while initializing Wireguard configuration: {}", e);
}
let request = self.make_packet(&Gossip::Request)?;
@ -222,6 +222,13 @@ impl Daemon {
unreachable!()
}
fn initialize(&self) -> Result<()> {
let mut state = self.state.lock().unwrap();
state.read_wg_peers(self)?;
state.setup_wg_peers(self, 0)?;
Ok(())
}
fn wg_loop(&self) -> ! {
let mut i = 0;
loop {