chrysn
chrysn
That functionality is conceptually already present: If your client also exposes renderable resources, just create a server context. The server context is just as capable of launching client requests, it...
Now that's something different -- avoiding to listen. Probably you'll also want to avoid opening a UDP port? That's fine, but even the client process would do that. What you...
I might be wrong, but AFAICT this would always fail because block message assembly assumes it starts at 0. Do you have a code example that would actually make use...
if you do blockwise yourself, the application should `return False` to the resource's needs_blockwise_assembly async method (possibly that should be simplifyed so a class attribute .needs_bockwise_assembly=False or similar can be...
There's nothing aiocoap can do about this -- unfortunately, DTLSSocket outputs some extra data (which, as a library, it shouldn't). Please file an issue there (but feel free to report...
On Thu, Dec 06, 2018 at 02:22:58PM -0800, moroen wrote: > it requires singning in, and I haven't found a way to register... Oh, that's their university server -- I've...
Thanks @kabel42 for fixing this! Concerning the setLogLevel function (yes, aiocoap uses dtls.DTLS directly) -- and thus the logging: Is this aiocoap could in any form capture to ensure that...
There is an old issue around #13: aiocoap doesn't cancel observations but just starts ignoring them. Eventually, the server might send another update and the client would RST it, but...
Multicast was removed because it didn't actually work -- but if it does for you, I'll have to re-evaluate that. (The current state of multicast in the 0.4 pre-releases is...
Not yet. The closest to are the plugtest client and server programs in `contrib/oscore-plugtest` but they need to be used with some care. An example of how to set up...