Home
last modified time | relevance | path

Searched refs:Config (Results 1 – 17 of 17) sorted by relevance

/smoltcp-0.9.1/src/phy/
Dfault_injector.rs20 struct Config { struct
51 fn refill(&mut self, config: &Config, timestamp: Instant) { in refill() argument
59 fn maybe_transmit(&mut self, config: &Config, timestamp: Instant) -> bool { in maybe_transmit() argument
73 fn maybe_receive(&mut self, config: &Config, timestamp: Instant) -> bool { in maybe_receive() argument
97 config: Config,
112 config: Config::default(), in new()
282 config: Config,
/smoltcp-0.9.1/examples/
Ddns.rs10 use smoltcp::iface::{Config, Interface, SocketSet};
34 let mut config = Config::new(); in main()
Ddhcp_client.rs7 use smoltcp::iface::{Config, Interface, SocketSet};
31 let mut config = Config::new(); in main()
Dclient.rs7 use smoltcp::iface::{Config, Interface, SocketSet};
32 let mut config = Config::new(); in main()
Dhttpclient.rs8 use smoltcp::iface::{Config, Interface, SocketSet};
32 let mut config = Config::new(); in main()
Dmulticast.rs5 use smoltcp::iface::{Config, Interface, SocketSet};
31 let mut config = Config::new(); in main()
Dsixlowpan.rs49 use smoltcp::iface::{Config, Interface, SocketSet};
70 let mut config = Config::new(); in main()
Dloopback.rs12 use smoltcp::iface::{Config, Interface, SocketSet};
86 let mut config = Config::new(); in main()
Dbenchmark.rs12 use smoltcp::iface::{Config, Interface, SocketSet};
91 let mut config = Config::new(); in main()
Dsixlowpan_benchmark.rs49 use smoltcp::iface::{Config, Interface, SocketSet};
150 let mut config = Config::new(); in main()
Dserver.rs7 use smoltcp::iface::{Config, Interface, SocketSet};
27 let mut config = Config::new(); in main()
Dping.rs10 use smoltcp::iface::Config;
108 let mut config = Config::new(); in main()
/smoltcp-0.9.1/src/socket/
Ddhcpv4.rs30 pub struct Config<'a> { struct
80 config: Config<'static>,
131 Configured(Config<'a>),
415 ) -> Option<(Config<'static>, Instant, Instant)> { in parse_ack()
460 let config = Config { in parse_ack()
670 Some(Event::Configured(Config { in poll()
1000 config: Config { in socket_bound()
1031 Some(Event::Configured(Config { in test_bind()
1066 Some(Event::Configured(Config { in test_bind_different_ports()
/smoltcp-0.9.1/src/iface/
Dmod.rs18 pub use self::interface::{Config, Interface, InterfaceInner as Context};
/smoltcp-0.9.1/src/iface/interface/
Dmod.rs268 pub struct Config { struct
291 impl Config { argument
293 Config { in new()
303 impl Default for Config { implementation
471 pub fn new<D>(config: Config, device: &mut D) -> Self in new() argument
Dtests.rs42 let mut config = Config::new(); in create_ip()
67 let mut config = Config::new(); in create_ethernet()
93 let mut config = Config::new(); in create_ieee802154()
140 let config = Config::new(); in test_new_panic()
/smoltcp-0.9.1/
DCHANGELOG.md181 - dhcpv4: Re-export dhcp::clientv4::Config