Searched refs:aResponseMessage (Results 1 – 4 of 4) sorted by relevance
/openthread-latest/src/core/net/ |
D | dns_client.cpp | 1310 void Client::ProcessResponse(const Message &aResponseMessage) in ProcessResponse() argument 1315 SuccessOrExit(ParseResponse(aResponseMessage, query, responseError)); in ProcessResponse() 1318 if (ReplaceWithIp4Query(*query, aResponseMessage) == kErrorNone) in ProcessResponse() 1343 ResolveHostAddressIfNeeded(*query, aResponseMessage); in ProcessResponse() 1348 SaveQueryResponse(*query, aResponseMessage); in ProcessResponse() 1352 PrepareResponseAndFinalize(FindMainQuery(*query), aResponseMessage, nullptr); in ProcessResponse() 1358 Error Client::ParseResponse(const Message &aResponseMessage, Query *&aQuery, Error &aResponseError) in ParseResponse() argument 1361 uint16_t offset = aResponseMessage.GetOffset(); in ParseResponse() 1366 SuccessOrExit(error = aResponseMessage.Read(offset, header)); in ParseResponse() 1386 SuccessOrExit(error = Name::CompareName(aResponseMessage, offset, queryName)); in ParseResponse() [all …]
|
D | dns_client.hpp | 799 void ProcessResponse(const Message &aResponseMessage); 800 … Error ParseResponse(const Message &aResponseMessage, Query *&aQuery, Error &aResponseError); 802 void SaveQueryResponse(Query &aQuery, const Message &aResponseMessage); 803 … Query *PopulateResponse(Response &aResponse, Query &aQuery, const Message &aResponseMessage); 804 …void PrepareResponseAndFinalize(Query &aQuery, const Message &aResponseMessage, Response *a… 808 Error ReplaceWithIp4Query(Query &aQuery, const Message &aResponseMessage); 821 void ResolveHostAddressIfNeeded(Query &aQuery, const Message &aResponseMessage);
|
D | dnssd_server.cpp | 912 …Server::OnUpstreamQueryDone(UpstreamQueryTransaction &aQueryTransaction, Message *aResponseMessage) in OnUpstreamQueryDone() argument 918 if (aResponseMessage != nullptr) in OnUpstreamQueryDone() 920 error = mSocket.SendTo(*aResponseMessage, aQueryTransaction.GetMessageInfo()); in OnUpstreamQueryDone() 930 FreeMessageOnError(aResponseMessage, error); in OnUpstreamQueryDone()
|
D | dnssd_server.hpp | 235 … void OnUpstreamQueryDone(UpstreamQueryTransaction &aQueryTransaction, Message *aResponseMessage);
|