Understand strictNtpMode behavior
masterThe strictNtpMode setting controls how aggressively the library attempts to verify time accuracy:
- When
true(Default): The library follows a strict SNTP call sequence. It resolves the NTP pool to multiple IP addresses and performs multiple calls to each. If a call fails, it will retry up toretryCountAgainstSingleIptimes per IP. - When
false: The library ignores the strict sequence and returns as soon as it receives at least one successful SNTP call. This is more permissive and similar to many other common NTP libraries.