aboutsummaryrefslogtreecommitdiffstats
path: root/src/coap/doc/src/qtcoap-overview.qdoc
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-05-18 03:05:08 +0200
committerQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2019-05-18 03:05:08 +0200
commit02d7238391ae0addc6517759b10d01948b108cb3 (patch)
treeb0c4d0497d73e1edde92c3eb4f1a72b726c39396 /src/coap/doc/src/qtcoap-overview.qdoc
parentbad7ee3d4f329ad258b4ceacdb3818084208cf5f (diff)
parentfd94d8e5673a5d5228aa2d38b605fde7a881332b (diff)
Merge remote-tracking branch 'origin/5.13' into dev
Diffstat (limited to 'src/coap/doc/src/qtcoap-overview.qdoc')
-rw-r--r--src/coap/doc/src/qtcoap-overview.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/coap/doc/src/qtcoap-overview.qdoc b/src/coap/doc/src/qtcoap-overview.qdoc
index 5400362..c686974 100644
--- a/src/coap/doc/src/qtcoap-overview.qdoc
+++ b/src/coap/doc/src/qtcoap-overview.qdoc
@@ -106,15 +106,15 @@
firmware resource available in the network. The reply is represented in
\l {https://tools.ietf.org/html/rfc6690}{CoRE Link Format}.
- The specialized QCoapDiscoveryReply class is used to get the discovery replies:
+ The specialized QCoapResourceDiscoveryReply class is used to get the discovery replies:
\code
// This will make a multicast discovery request to the CoAP IPv4 multicast group.
- QCoapDiscoveryReply *discoverReply = client->discover();
- connect(discoverReply, &QCoapDiscoveryReply::discovered, this, &MyClass::onDiscovered);
+ QCoapResourceDiscoveryReply *discoverReply = client->discover();
+ connect(discoverReply, &QCoapResourceDiscoveryReply::discovered, this, &MyClass::onDiscovered);
\endcode
- The QCoapDiscoveryReply::discovered will return the list of CoAP resources found in the
+ The QCoapResourceDiscoveryReply::discovered will return the list of CoAP resources found in the
network.
\section2 Resource Observation