Jozef Kralik
Jozef Kralik
Hi @jbinfn. Pls could you describe your environment setup: - hub version - iotivity-lite - commit revision - number of devices in the test - debug logs from the coap-gateway...
Golangci-lint - is fixed in another PR
Hi. I think this is a good feature. If you have time could you create for that PR ? I will merge it. For now I'm very busy with OCF...
Hi Instead call ` resp, err := co.Get(path)` you can use resp, err := co.GetWithContext(ctx, path) and in context you can define timeout. > Doesn't seem like ListenAndServerDTLS() should return...
@hjames9 It's expected that this error occurs only when listen socket was closed. When you shutdown server you get error - this I want to to change too -> it...
Thx for reporting - this a bug.
This was fixed - currently, it uses CON messages for BWT. Fixed by PR #241
@mladedav to confirm message go-coap automatic sends a separate message which contains "Acknowledged". So for your use case you can use a similar approach as https://github.com/plgd-dev/go-coap/blob/231b8cdcfcc3c892098539a987c14d7c415c0838/examples/observe/server/main.go#L78 eg something like: ```...
@Danielius1922 I agree. We can create option to the server that allows to set function - etag generator. And `nil` will be means that etag option will be not set...
> Is it possible not to send any options at all? Yes. Just follow the code in example: https://github.com/plgd-dev/go-coap/blob/e59fa916285a183e0adbcbf6d0c2e1329ddc448e/examples/simple/server/main.go#L28