ESP-IDF
ot::Coap::Message::IsPostRequest() const
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/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::Coap::Message::IsPostRequest() const
ot::Coap::Message::IsPostRequest() const method
Indicates whether or not the CoAP code in header is "Post" request.
Syntax
Show:
Summary
Declaration
from
coap_message.hpp:661
bool
IsPostRequest
(
void
)
const
;
Return value
TRUE Message is a Post request. FALSE Message is not a Post request.
Examples
References
from
examples
Code
Location
Scope
Referrer
bool
IsPostRequest
(
void
)
const
{
return
GetCode
(
)
==
kCodePost
;
}
coap_message.hpp:661
VerifyOrExit
(
aMessage
.
IsPostRequest
(
)
,
error
=
kErrorDrop
)
;
address_resolver.cpp:771
ot::AddressResolver
ot::AddressResolver::HandleTmf()
VerifyOrExit
(
aMessage
.
IsPostRequest
(
)
)
;
announce_begin_server.cpp:62
ot::AnnounceBeginServer
ot::AnnounceBeginServer::HandleTmf()
VerifyOrExit
(
aMessage
.
IsPostRequest
(
)
,
error
=
kErrorParse
)
;
bbr_manager.cpp:580
ot::BackboneRouter::Manager
ot::BackboneRouter::Manager::HandleTmf()
bool
Message
::
IsConfirmablePostRequest
(
void
)
const
{
return
IsConfirmable
(
)
&&
IsPostRequest
(
)
;
}
coap_message.cpp:80
ot::Coap::Message
ot::Coap::Message::IsConfirmablePostRequest() const
bool
Message
::
IsNonConfirmablePostRequest
(
void
)
const
{
return
IsNonConfirmable
(
)
&&
IsPostRequest
(
)
;
}
coap_message.cpp:82
ot::Coap::Message
ot::Coap::Message::IsNonConfirmablePostRequest() const
VerifyOrExit
(
aMessage
.
IsPostRequest
(
)
,
error
=
kErrorParse
)
;
dua_manager.cpp:593
ot::DuaManager
ot::DuaManager::HandleTmf()
VerifyOrExit
(
aMessage
.
IsPostRequest
(
)
)
;
energy_scan_server.cpp:63
ot::EnergyScanServer
ot::EnergyScanServer::HandleTmf()
VerifyOrExit
(
aMessage
.
IsPostRequest
(
)
)
;
network_diagnostic.cpp:397
ot::NetworkDiagnostic::Server
ot::NetworkDiagnostic::Server::HandleTmf()
VerifyOrExit
(
aMessage
.
IsPostRequest
(
)
)
;
panid_query_server.cpp:56
ot::PanIdQueryServer
ot::PanIdQueryServer::HandleTmf()
Call Tree
from
examples
ot::Coap::Message::IsPostRequest() const
is called by 9 functions and calls 1 function:
ot::AddressResolver::HandleTmf()
ot::AnnounceBeginServer::HandleTmf()
ot::DuaManager::HandleTmf()
ot::EnergyScanServer::HandleTmf()
ot::NetworkDiagnostic::Server::HandleTmf()
ot::PanIdQueryServer::HandleTmf()
ot::BackboneRouter::Manager::HandleTmf()
ot::Coap::Message::IsConfirmablePostRequest() const
ot::Coap::Message::IsNonConfirmablePostRequest() const
All items filtered out
ot::Coap::Message::IsPostRequest() const
ot::Coap::Message::GetCode() const
All items filtered out
Data Use
from
examples
ot::Coap::Message::IsPostRequest() const
reads 1 variable:
ot::Coap::Code::kCodePost
All items filtered out
ot::Coap::Message::IsPostRequest() 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