Skip to content

Commit

Permalink
Clarify documentation and more descriptive dns auto flag
Browse files Browse the repository at this point in the history
  • Loading branch information
hhvrc committed Jul 3, 2024
1 parent 16a15e3 commit ff530d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions HubConfig.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,15 @@ table OtaUpdateConfig {

table DnsConfig {
/// Whether to use DHCP to automatically configure the network
auto:bool;
use_dhcp:bool;

/// The primary DNS server
/// The primary DNS server (overridden by DHCP if auto is true)
primary:string;

/// The secondary DNS server
/// The secondary DNS server (overridden by DHCP if auto is true)
secondary:string;

/// The fallback DNS server
/// The fallback DNS server (used if the primary and secondary DNS servers fail both in auto and manual mode)
fallback:string;
}

Expand Down

0 comments on commit ff530d1

Please sign in to comment.