Searched refs:kDnsSecFlag (Results 1 – 1 of 1) sorted by relevance
2371 …bool IsDnsSecurityFlagSet(void) const { return (GetTtlByteAt(kFlagByteIndex) & kDnsSecFlag) != 0; } in IsDnsSecurityFlagSet()2377 void ClearDnsSecurityFlag(void) { GetTtlByteAt(kFlagByteIndex) &= ~kDnsSecFlag; } in ClearDnsSecurityFlag()2383 void SetDnsSecurityFlag(void) { GetTtlByteAt(kFlagByteIndex) |= kDnsSecFlag; } in SetDnsSecurityFlag()2403 static constexpr uint8_t kDnsSecFlag = 1 << 7; // DNSSec OK bit flag. member in ot::Dns::OptRecord