Skip to content
GitLab
Explore
Sign in
Admin message
Gitlab Update from 17.11.1 to 17.11.2 runs on 2025-05-14
Changes
Page history
formatting of eclipse import tutorial
authored
May 30, 2017
by
Björn Butzin
Hide whitespace changes
Inline
Side-by-side
home.markdown
View page @
a510d119
...
@@ -186,10 +186,14 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn
...
@@ -186,10 +186,14 @@ You can find the required files in our repository at [https://gitlab.amd.e-techn
*
GET the
`/.well-known/core`
resource (it is generated automatically by the server)
*
GET the
`/.well-known/core`
resource (it is generated automatically by the server)
*
GET the
`/.well-known/core`
resource using multicast (aka. Multicast Discovery)
*
GET the
`/.well-known/core`
resource using multicast (aka. Multicast Discovery)
*
Multicast Adresses:
*
Multicast Adresses:
*
`CoapConstants.COAP_ALL_NODES_IPV4_MC_ADDR`
,
*
`CoapConstants.COAP_ALL_NODES_IPV6_LL_MC_ADDR`
and
```
*
`CoapConstants.COAP_ALL_NODES_IPV6_SL_MC_ADDR`
`CoapConstants.COAP_ALL_NODES_IPV4_MC_ADDR`
`CoapConstants.COAP_ALL_NODES_IPV6_LL_MC_ADDR` and
`CoapConstants.COAP_ALL_NODES_IPV6_SL_MC_ADDR`
```
*
Add a token to identify resposes on multicast request
```
java
```
java
// add a (mandatory) token to match outgoing multicast message and incoming unicast messages
// add a (mandatory) token to match outgoing multicast message and incoming unicast messages
request
.
setToken
(
"MCToken"
.
getBytes
());
request
.
setToken
(
"MCToken"
.
getBytes
());
...
...