Home
last modified time | relevance | path

Searched refs:aQuestion (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/core/net/
Dmdns.cpp3686 void Core::RxMessage::ProcessQuestion(Question &aQuestion) in ProcessQuestion() argument
3688 Name name(*mMessagePtr, aQuestion.mNameOffset); in ProcessQuestion()
3690 VerifyOrExit(aQuestion.mIsRrClassInternet); in ProcessQuestion()
3696 VerifyOrExit(QuestionMatches(aQuestion.mRrType, ResourceRecord::kTypePtr)); in ProcessQuestion()
3699 aQuestion.mCanAnswer = true; in ProcessQuestion()
3700 aQuestion.mIsForAllServicesDnssd = true; in ProcessQuestion()
3707 aQuestion.mEntry = Get<Core>().mHostEntries.FindMatching(name); in ProcessQuestion()
3709 if (aQuestion.mEntry == nullptr) in ProcessQuestion()
3711 aQuestion.mEntry = Get<Core>().mServiceEntries.FindMatching(name); in ProcessQuestion()
3712 aQuestion.mIsForService = (aQuestion.mEntry != nullptr); in ProcessQuestion()
[all …]
Dmdns.hpp1340 void ProcessQuestion(Question &aQuestion);
1341 void AnswerQuestion(const Question &aQuestion, uint16_t aDelay);
1342 …void AnswerServiceTypeQuestion(const Question &aQuestion, const AnswerInfo &aInfo, ServiceEntry &a…
1346 bool ParseQuestionNameAsSubType(const Question &aQuestion,
1349 void AnswerAllServicesQuestion(const Question &aQuestion, const AnswerInfo &aInfo);
1350 … bool ShouldSuppressKnownAnswer(const Question &aQuestion, const ServiceType &aServiceType) const;