use core::net::{Ipv4Addr, SocketAddrV4};
use edge_dhcp::client::Client;
use edge_dhcp::io::{client::Lease, DEFAULT_CLIENT_PORT, DEFAULT_SERVER_PORT};
use edge_nal::{MacAddr, RawBind};
use edge_raw::io::RawSocket2Udp;
use log::info;
fn main() {
env_logger::init_from_env(
env_logger::Env::default().filter_or(env_logger::DEFAULT_FILTER_ENV, "info"),
);
futures_lite::future::block_on(run(
2, [0x4c, 0xcc, 0x6a, 0xa2, 0x23, 0xf5], ))
.unwrap();
}
async fn run(if_index: u32, if_mac: MacAddr) -> Result<(), anyhow::Error> {
let mut client = Client::new(rand::rng(), if_mac);
let stack = edge_nal_std::Interface::new(if_index);
let mut buf = [0; 1500];
loop {
let mut socket: RawSocket2Udp<_> = RawSocket2Udp::new(
stack.bind().await?,
Some(SocketAddrV4::new(
Ipv4Addr::UNSPECIFIED,
DEFAULT_CLIENT_PORT,
)),
Some(SocketAddrV4::new(
Ipv4Addr::UNSPECIFIED,
DEFAULT_SERVER_PORT,
)),
[255; 6], );
let (mut lease, options) = Lease::new(&mut client, &mut socket, &mut buf).await?;
info!("Got lease {lease:?} with options {options:?}");
info!("Entering an endless loop to keep the lease...");
lease.keep(&mut client, &mut socket, &mut buf).await?;
}
}