Jon Shallow

Results 272 comments of Jon Shallow

The issue with a long macro name is that there is likelihood of exceeding the line length of 80 characters. [Anything longer than G_CHECK will require lines to be split...

@oliness If you are happy to do the work, that is fine by me.

@oliness Are you going to be able to do this work?

- With GnuTLS, the range is from 0 to 99, but realistically 10 gives you everything. - With OpenSSL, libcoap sets the logging levels within the defined `SSL_CTX_set_info_callback() `callback. There...

Finding the documentation for the logging information in the different (D)TLS libraries was not straightforward, with bland statements along the lines of "the bigger the number, more detailed the logging"...

I have gone with ```` Jul 20 08:59:42.314 DEBG * 127.0.0.1:33244 127.0.0.1:5684 DTLS: sent 15 bytes Jul 20 08:59:42.314 DTLS-DEBG removed peer: 127.0.0.1:5684 Jul 20 08:59:42.314 DEBG ***removed session 0x7717c0...

libcoap currently has no multi-thread support / protection, but is on a TODO List. No planned dates. coap_async_trigger() does (multi-thread unsafe) update the coap_context_t structure and does not itself call...

@frankielii The coap_endpoint_t is there for a listening endpoint and so is used for a CoAP Server. When a new connection comes into the server, a coap_session_t is created to...

@frankielii It looks like when libcoap was re-factored some time back to better handle networking that this part of LwIP support was overlooked and needs to be fixed.

If I get a chance, I will look at this.