chrysn
chrysn
(Note to self: run tests using https://github.com/kholia/OSX-KVM/blob/master/boot-macOS-NG.sh ?)
I've received conflicting reports on that, so it'd be great to see which concrete errors you see (along with the output of `python3 -m aiocoap.cli.defaults` or the used aiocoap version...
I'm not sure off my head and can't do a full check right now, but do you return from start_server? That'd be one way how the request would get deleted....
The CoAP community has moved away from bearer tokens for security reasons -- nothing in it prevents MITM attacks. If you do insist that it's the right tool for your...
So The Way It's Supposed To Be (according to me, opinions obviously vary) is using CBOR Web Tokens (RFC8392). When they are issued in the way of the ACE-OSCORE profile...
> How do option codes work? They go together with the request under > "Message". They are the "headers" of CoAP, see https://tools.ietf.org/html/rfc7252#section-5.4 and https://www.iana.org/assignments/core-parameters/core-parameters.xhtml for the registered one. But...
The server automatically starts at all supported protocols unless the default server transports are overridden. (The coaps+tcp and coaps+ws servers start only if TLS certificates are passed in). There is...
To be honest, support for NoResponse was primarily put in on the server side – I didn't think of the client side yet. The intended behavior for NoResponse:26 would indeed...
aiocoap does not implement a timeout by itself (leaving that to the application), but should allow for the task to be reaped once the application lost interest in the request....
Yes, that's because those tasks are not reaped yet – working on it :-) (But that's about the invocation I'd expect to work in the end, although introducing a shortcut...