ESP-IDF
ot::Dns::Client::QueryInfo::mQueryType
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::Dns::Client::QueryInfo::mQueryType
ot::Dns::Client::QueryInfo::mQueryType field
Syntax
Show:
Summary
Declaration
from
dns_client.hpp:771
QueryType
mQueryType
;
Examples
References
from
examples
Code
Location
Scope
Referrer
QueryType
mQueryType
;
dns_client.hpp:771
if
(
(
info
.
mQueryType
==
kIp4AddressQuery
)
||
mIp6QueryResponseRequiresNat64
)
dns_client.cpp:424
ot::Dns::Client::AddressResponse
ot::Dns::Client::AddressResponse::GetAddress() const
section
=
(
info
.
mQueryType
==
kIp4AddressQuery
)
?
kAnswerSection
:
kAdditionalDataSection
;
dns_client.cpp:433
ot::Dns::Client::AddressResponse
ot::Dns::Client::AddressResponse::GetAddress() const
switch
(
info
.
mQueryType
)
dns_client.cpp:598
ot::Dns::Client::ServiceResponse
ot::Dns::Client::ServiceResponse::GetServiceInfo() const
srvSection
=
(
info
.
mQueryType
!=
kServiceQueryTxt
)
?
kAnswerSection
:
kAdditionalDataSection
;
dns_client.cpp:627
ot::Dns::Client::ServiceResponse
ot::Dns::Client::ServiceResponse::GetServiceInfo() const
txtSection
=
(
info
.
mQueryType
!=
kServiceQuerySrv
)
?
kAnswerSection
:
kAdditionalDataSection
;
dns_client.cpp:628
ot::Dns::Client::ServiceResponse
ot::Dns::Client::ServiceResponse::GetServiceInfo() const
switch
(
info
.
mQueryType
)
dns_client.cpp:665
ot::Dns::Client::ServiceResponse
ot::Dns::Client::ServiceResponse::GetHostAddress() const
info
.
mQueryType
=
kIp6AddressQuery
;
dns_client.cpp:862
ot::Dns::Client
ot::Dns::Client::ResolveAddress()
info
.
mQueryType
=
kIp4AddressQuery
;
dns_client.cpp:879
ot::Dns::Client
ot::Dns::Client::ResolveIp4Address()
info
.
mQueryType
=
kBrowseQuery
;
dns_client.cpp:895
ot::Dns::Client
ot::Dns::Client::Browse()
info
.
mQueryType
=
kServiceQuerySrv
;
dns_client.cpp:949
ot::Dns::Client
ot::Dns::Client::Resolve()
info
.
mQueryType
=
kServiceQueryTxt
;
dns_client.cpp:953
ot::Dns::Client
ot::Dns::Client::Resolve()
info
.
mQueryType
=
kServiceQuerySrvTxt
;
dns_client.cpp:960
ot::Dns::Client
ot::Dns::Client::Resolve()
if
(
aInfo
.
mQueryType
==
kIp4AddressQuery
)
dns_client.cpp:987
ot::Dns::Client
ot::Dns::Client::StartQuery()
aInfo
.
mQueryType
=
aSecondType
;
dns_client.cpp:1008
ot::Dns::Client
ot::Dns::Client::StartQuery()
header
.
SetQuestionCount
(
kQuestionCount
[
aInfo
.
mQueryType
]
)
;
dns_client.cpp:1120
ot::Dns::Client
ot::Dns::Client::SendQuery()
for
(
uint8_t
num
=
0
;
num
<
kQuestionCount
[
aInfo
.
mQueryType
]
;
num
++
)
dns_client.cpp:1129
ot::Dns::Client
ot::Dns::Client::SendQuery()
SuccessOrExit
(
error
=
message
->
Append
(
Question
(
kQuestionRecordTypes
[
aInfo
.
mQueryType
]
[
num
]
)
)
)
;
dns_client.cpp:1132
ot::Dns::Client
ot::Dns::Client::SendQuery()
aType
=
info
.
mQueryType
;
dns_client.cpp:1276
ot::Dns::Client
ot::Dns::Client::GetQueryTypeAndCallback()
if
(
header
.
GetQuestionCount
(
)
==
kQuestionCount
[
info
.
mQueryType
]
)
dns_client.cpp:1382
ot::Dns::Client
ot::Dns::Client::ParseResponse()
for
(
uint8_t
num
=
0
;
num
<
kQuestionCount
[
info
.
mQueryType
]
;
num
++
)
dns_client.cpp:1384
ot::Dns::Client
ot::Dns::Client::ParseResponse()
if
(
(
aResponseError
==
kErrorNone
)
&&
(
info
.
mQueryType
==
kServiceQuerySrvTxt
)
)
dns_client.cpp:1406
ot::Dns::Client
ot::Dns::Client::ParseResponse()
VerifyOrExit
(
info
.
mQueryType
==
kIp6AddressQuery
)
;
dns_client.cpp:1573
ot::Dns::Client
ot::Dns::Client::ReplaceWithIp4Query()
info
.
mQueryType
=
kIp4AddressQuery
;
dns_client.cpp:1610
ot::Dns::Client
ot::Dns::Client::ReplaceWithIp4Query()
VerifyOrExit
(
info
.
mQueryType
==
kServiceQuerySrvTxt
)
;
dns_client.cpp:1687
ot::Dns::Client
ot::Dns::Client::ReplaceWithSeparateSrvTxtQueries()
info
.
mQueryType
=
kServiceQueryTxt
;
dns_client.cpp:1695
ot::Dns::Client
ot::Dns::Client::ReplaceWithSeparateSrvTxtQueries()
info
.
mQueryType
=
kServiceQuerySrv
;
dns_client.cpp:1701
ot::Dns::Client
ot::Dns::Client::ReplaceWithSeparateSrvTxtQueries()
VerifyOrExit
(
info
.
mQueryType
==
kServiceQuerySrvTxt
||
info
.
mQueryType
==
kServiceQuerySrv
)
;
dns_client.cpp:1721
ot::Dns::Client
ot::Dns::Client::ResolveHostAddressIfNeeded()
info
.
mQueryType
=
kIp6AddressQuery
;
dns_client.cpp:1737
ot::Dns::Client
ot::Dns::Client::ResolveHostAddressIfNeeded()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
ot::Dns::Client::QueryInfo::mQueryType
is written by 8 functions and is read by 10 functions:
ot::Dns::Client::ResolveAddress()
ot::Dns::Client::ResolveIp4Address()
ot::Dns::Client::Browse()
ot::Dns::Client::Resolve()
ot::Dns::Client::StartQuery()
ot::Dns::Client::ReplaceWithIp4Query()
ot::Dns::Client::ReplaceWithSeparateSrvTxtQueries()
ot::Dns::Client::ResolveHostAddressIfNeeded()
All items filtered out
ot::Dns::Client::QueryInfo::mQueryType
ot::Dns::Client::AddressResponse::GetAddress() const
ot::Dns::Client::ServiceResponse::GetServiceInfo() const
ot::Dns::Client::ServiceResponse::GetHostAddress() const
ot::Dns::Client::StartQuery()
ot::Dns::Client::SendQuery()
ot::Dns::Client::GetQueryTypeAndCallback()
ot::Dns::Client::ParseResponse()
ot::Dns::Client::ReplaceWithIp4Query()
ot::Dns::Client::ReplaceWithSeparateSrvTxtQueries()
ot::Dns::Client::ResolveHostAddressIfNeeded()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out