aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 13f6c52..e50925a 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -141,7 +141,7 @@ async fn tick(sock: &UdpSocket, dhcp6: &Dhcp6) -> Result<()> {
println!("[info] solicit");
Ok(())
}
- Some(lease) => Ok(()),
+ Some(lease) => todo!(),
}
}
@@ -153,5 +153,5 @@ fn logged_handle(buf: &[u8], raddr: SocketAddr) {
}
fn handle(buf: &[u8], raddr: SocketAddr) -> Result<()> {
- Ok(())
+ todo!()
}