36 lines
874 B
Rust
Raw Normal View History

2021-02-03 05:09:37 +01:00
use heapless::Vec;
use smoltcp::time::Instant;
use smoltcp::wire::{Ipv4Address, Ipv4Cidr};
2021-11-26 04:12:14 +01:00
use crate::Interface;
2021-02-03 05:09:37 +01:00
mod statik;
pub use statik::StaticConfigurator;
#[cfg(feature = "dhcpv4")]
mod dhcp;
#[cfg(feature = "dhcpv4")]
pub use dhcp::DhcpConfigurator;
/// Return value for the `Configurator::poll` function
2021-02-03 05:09:37 +01:00
#[derive(Debug, Clone)]
pub enum Event {
/// No change has occured to the configuration.
NoChange,
/// Configuration has been lost (for example, DHCP lease has expired)
Deconfigured,
/// Configuration has been newly acquired, or modified.
Configured(Config),
2021-02-03 05:09:37 +01:00
}
2021-04-12 18:13:22 +02:00
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Config {
2021-02-03 05:09:37 +01:00
pub address: Ipv4Cidr,
pub gateway: Option<Ipv4Address>,
2021-06-04 01:24:14 +02:00
pub dns_servers: Vec<Ipv4Address, 3>,
2021-02-03 05:09:37 +01:00
}
pub trait Configurator {
2021-11-26 04:12:14 +01:00
fn poll(&mut self, iface: &mut Interface, timestamp: Instant) -> Event;
2021-02-03 05:09:37 +01:00
}