We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be2248c commit 92f5db1Copy full SHA for 92f5db1
cross/dns/src/main.rs
@@ -124,7 +124,8 @@ fn main() -> ! {
124
if byte == 3 {
125
defmt::info!("Connected to Network: {:?}", SSID);
126
127
- // The IPAddress of our DNS server to resolve hostnames with
+ // The IPAddresses of two DNS servers to resolve hostnames with.
128
+ // Note that failover from ip1 to ip2 is fully functional.
129
let ip1: IpAddress = [9, 9, 9, 9];
130
let ip2: IpAddress = [8, 8, 8, 8];
131
let dns_result = wifi.set_dns(ip1, Some(ip2));
0 commit comments