ESP-IDF
ot::kErrorSecurity
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (2/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::kErrorSecurity
ot::kErrorSecurity variable
Syntax
Show:
Summary
Declaration
from
error.hpp:62
constexpr
Error
kErrorSecurity
=
OT_ERROR_SECURITY
;
Examples
References
from
examples
Code
Location
Scope
Referrer
constexpr
Error
kErrorSecurity
=
OT_ERROR_SECURITY
;
error.hpp:62
VerifyOrExit
(
ret
==
0
,
error
=
kErrorSecurity
)
;
crypto_platform.cpp:651
otPlatCryptoEcdsaVerify()
error
=
kErrorSecurity
;
dns_types.cpp:88
ot::Dns::Header
ot::Dns::Header::ResponseCodeToError()
Error
error
=
kErrorSecurity
;
mac.cpp:1518
ot::Mac::Mac
ot::Mac::Mac::ProcessReceiveSecurity()
Error
error
=
kErrorSecurity
;
mac.cpp:1672
ot::Mac::Mac
ot::Mac::Mac::ProcessEnhAckSecurity()
case
kErrorSecurity
:
mac.cpp:2027
ot::Mac::Mac
ot::Mac::Mac::HandleReceivedFrame()
Error
error
=
kErrorSecurity
;
mac_frame.cpp:1514
ot::Mac::RxFrame
ot::Mac::RxFrame::ProcessReceiveAesCcm()
error
=
kErrorSecurity
;
mbedtls.cpp:142
ot::Crypto::MbedTls
ot::Crypto::MbedTls::MapError()
VerifyOrExit
(
aRxInfo
.
IsLinkSecurityEnabled
(
)
,
error
=
kErrorSecurity
)
;
mesh_forwarder_ftd.cpp:575
ot::MeshForwarder
ot::MeshForwarder::HandleMesh()
VerifyOrExit
(
aMessage
.
Compare
(
aMessage
.
GetLength
(
)
-
kMleSecurityTagSize
,
tag
)
,
error
=
kErrorSecurity
)
;
mle.cpp:2288
ot::Mle::Mle
ot::Mle::Mle::ProcessMessageSecurity()
VerifyOrExit
(
aRxInfo
.
IsNeighborStateValid
(
)
,
error
=
kErrorSecurity
)
;
mle.cpp:3181
ot::Mle::Mle
ot::Mle::Mle::HandleChildIdResponse()
VerifyOrExit
(
response
==
mParentRequestChallenge
,
error
=
kErrorSecurity
)
;
mle.cpp:3439
ot::Mle::Mle
ot::Mle::Mle::HandleChildUpdateResponseOnChild()
VerifyOrExit
(
(
aRxInfo
.
mNeighbor
==
&
mParent
)
&&
mParent
.
IsStateValid
(
)
,
error
=
kErrorSecurity
)
;
mle.cpp:3443
ot::Mle::Mle
ot::Mle::Mle::HandleChildUpdateResponseOnChild()
VerifyOrExit
(
response
==
aChallenge
,
error
=
kErrorSecurity
)
;
mle.cpp:5022
ot::Mle::Mle::RxMessage
ot::Mle::Mle::RxMessage::ReadAndMatchResponseTlvWith() const
VerifyOrExit
(
response
==
router
->
GetChallenge
(
)
,
error
=
kErrorSecurity
)
;
mle_router.cpp:878
ot::Mle::MleRouter
ot::Mle::MleRouter::HandleLinkAccept()
error
=
kErrorSecurity
)
;
mle_router.cpp:883
ot::Mle::MleRouter
ot::Mle::MleRouter::HandleLinkAccept()
ExitNow
(
error
=
kErrorSecurity
)
;
mle_router.cpp:891
ot::Mle::MleRouter
ot::Mle::MleRouter::HandleLinkAccept()
VerifyOrExit
(
response
==
child
->
GetChallenge
(
)
,
error
=
kErrorSecurity
)
;
mle_router.cpp:2334
ot::Mle::MleRouter
ot::Mle::MleRouter::HandleChildUpdateResponseOnParent()
VerifyOrExit
(
child
->
IsStateValid
(
)
,
error
=
kErrorSecurity
)
;
mle_router.cpp:2337
ot::Mle::MleRouter
ot::Mle::MleRouter::HandleChildUpdateResponseOnParent()
VerifyOrExit
(
aRxInfo
.
IsNeighborStateValid
(
)
,
error
=
kErrorSecurity
)
;
mle_router.cpp:2463
ot::Mle::MleRouter
ot::Mle::MleRouter::HandleDataRequest()
VerifyOrExit
(
Get
<
NetworkData
::
Leader
>
(
)
.
IsJoiningAllowed
(
)
,
error
=
kErrorSecurity
)
;
mle_router.cpp:2650
ot::Mle::MleRouter
ot::Mle::MleRouter::HandleDiscoveryRequest()
if
(
(
error
==
kErrorDuplicated
)
||
(
error
==
kErrorSecurity
)
)
srp_client.cpp:1834
ot::Srp::Client
ot::Srp::Client::ProcessResponse()
VerifyOrExit
(
StringMatch
(
name
,
GetDomain
(
)
,
kStringCaseInsensitiveMatch
)
,
error
=
kErrorSecurity
)
;
srp_server.cpp:857
ot::Srp::Server
ot::Srp::Server::ProcessZoneSection() const
VerifyOrExit
(
aHost
.
mKey
==
keyRecord
.
GetKey
(
)
,
error
=
kErrorSecurity
)
;
srp_server.cpp:958
ot::Srp::Server
ot::Srp::Server::ProcessHostDescriptionInstruction() const
VerifyOrExit
(
Dns
::
Name
::
IsSubDomainOf
(
serviceName
,
GetDomain
(
)
)
,
error
=
kErrorSecurity
)
;
srp_server.cpp:1004
ot::Srp::Server
ot::Srp::Server::ProcessServiceDiscoveryInstructions() const
VerifyOrExit
(
Dns
::
Name
::
IsSubDomainOf
(
name
,
GetDomain
(
)
)
,
error
=
kErrorSecurity
)
;
srp_server.cpp:1149
ot::Srp::Server
ot::Srp::Server::ProcessServiceDescriptionInstructions() const
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
ot::kErrorSecurity
is read by 21 functions:
All items filtered out
ot::kErrorSecurity
otPlatCryptoEcdsaVerify()
ot::Crypto::MbedTls::MapError()
ot::Mac::Mac::ProcessReceiveSecurity()
ot::Mac::Mac::ProcessEnhAckSecurity()
ot::Mac::Mac::HandleReceivedFrame()
ot::Mac::RxFrame::ProcessReceiveAesCcm()
ot::MeshForwarder::HandleMesh()
ot::Mle::Mle::ProcessMessageSecurity()
ot::Mle::Mle::HandleChildIdResponse()
ot::Mle::Mle::HandleChildUpdateResponseOnChild()
ot::Mle::Mle::RxMessage::ReadAndMatchResponseTlvWith() const
ot::Mle::MleRouter::HandleLinkAccept()
ot::Mle::MleRouter::HandleChildUpdateResponseOnParent()
ot::Mle::MleRouter::HandleDataRequest()
ot::Mle::MleRouter::HandleDiscoveryRequest()
ot::Dns::Header::ResponseCodeToError()
ot::Srp::Client::ProcessResponse()
ot::Srp::Server::ProcessZoneSection() const
ot::Srp::Server::ProcessHostDescriptionInstruction() const
ot::Srp::Server::ProcessServiceDiscoveryInstructions() const
ot::Srp::Server::ProcessServiceDescriptionInstructions() const
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