• Home
Name Date Size #Lines LOC

..--

.gitignoreD12-May-2024111 87

MakefileD12-May-2024419 1611

Makefile.contikiD12-May-2024904 3418

READMED12-May-2024961 3121

coap-observer.cD12-May-20246.1 KiB187110

coap_config.hD12-May-20245 KiB210118

radvd.conf.sampleD12-May-2024194 1512

server.cD12-May-20247 KiB223138

README

1Example of libcoap running on contiki
2=====================================
3
4To run the example, do
5
6    $ make
7    $ sudo ./server.minimal-net
8
9(and in a second terminal)
10
11    $ sudo ip -6 a a aaaa::1/64 dev tap0
12
13and query `coap://[aaaa::1000]/time?ticks` with any coap tool,
14or query `coap://[aaaa::1000]/.well-known/core`
15
16This will
17
18* download contiki from the upstream git sources
19* build the server application
20* run the server application, creating a virtual network device tap0 (unless
21  that exists)
22* configure your network interface to make the server accessible.
23
24* return the appropriate response from the server to the client.
25
26The server creates a resource for 'time' with a query 'ticks'.  This is
27reported for `.well-known/core`. The work flow for adding more resources does
28not differ from regular libcoap usage. If you seem to run out of memory
29creating the resources, tweak the number of pre-allocated resources
30in `coap_config.h.contiki`.
31