Home
last modified time | relevance | path

Searched refs:aResponseMessage (Results 1 – 4 of 4) sorted by relevance

/openthread-3.5.0/src/core/net/
Ddns_client.cpp1316 void Client::ProcessResponse(const Message &aResponseMessage) in ProcessResponse() argument
1321 SuccessOrExit(ParseResponse(aResponseMessage, query, responseError)); in ProcessResponse()
1348 ResolveHostAddressIfNeeded(*query, aResponseMessage); in ProcessResponse()
1353 SaveQueryResponse(*query, aResponseMessage); in ProcessResponse()
1357 PrepareResponseAndFinalize(FindMainQuery(*query), aResponseMessage, nullptr); in ProcessResponse()
1363 Error Client::ParseResponse(const Message &aResponseMessage, Query *&aQuery, Error &aResponseError) in ParseResponse() argument
1366 uint16_t offset = aResponseMessage.GetOffset(); in ParseResponse()
1371 SuccessOrExit(error = aResponseMessage.Read(offset, header)); in ParseResponse()
1391 SuccessOrExit(error = Name::CompareName(aResponseMessage, offset, queryName)); in ParseResponse()
1403 …SuccessOrExit(error = ResourceRecord::ParseRecords(aResponseMessage, offset, header.GetAnswerCount… in ParseResponse()
[all …]
Ddns_client.hpp843 void ProcessResponse(const Message &aResponseMessage);
844 … Error ParseResponse(const Message &aResponseMessage, Query *&aQuery, Error &aResponseError);
846 void SaveQueryResponse(Query &aQuery, const Message &aResponseMessage);
847 … Query *PopulateResponse(Response &aResponse, Query &aQuery, const Message &aResponseMessage);
848 …void PrepareResponseAndFinalize(Query &aQuery, const Message &aResponseMessage, Response *a…
862 void ResolveHostAddressIfNeeded(Query &aQuery, const Message &aResponseMessage);
Ddnssd_server.cpp859 …Server::OnUpstreamQueryDone(UpstreamQueryTransaction &aQueryTransaction, Message *aResponseMessage) in OnUpstreamQueryDone() argument
865 if (aResponseMessage != nullptr) in OnUpstreamQueryDone()
867 error = mSocket.SendTo(*aResponseMessage, aQueryTransaction.GetMessageInfo()); in OnUpstreamQueryDone()
873 FreeMessageOnError(aResponseMessage, error); in OnUpstreamQueryDone()
Ddnssd_server.hpp213 … void OnUpstreamQueryDone(UpstreamQueryTransaction &aQueryTransaction, Message *aResponseMessage);