coap icon indicating copy to clipboard operation
coap copied to clipboard

A Coap package for dart

Results 12 coap issues
Sort by recently updated
recently updated
newest added

This PR addresses some of the TODOs mentioned in #140 and a couple of minor linting issues. As part of this PR, the `isPrintable` method is removed from the `CoapMediaType`...

I started working on a simple, experimental server implementation (which currently only supports UDP). For now, this is only a proof-of-concept, which can be improved upon once #127 has been...

Revisiting the current CoapCode implementation, I got the impression that the APIs for creating new requests and responses could be improved to leave less room for potential errors by introducing...

There are a a few TODO comments building up across the code base, see below, these need to be either fixed or removed if no longer needed. Found 17 TODO...

In #122, I am currently adding in both support for the OSCORE option format and for the different OSCORE option classes (i.e., inner vs. outer options) as defined in [RFC...

Look into providing support for TCP as specified in [RFC 8323](https://datatracker.ietf.org/doc/html/rfc8323).

This PR depends on #92 and is supposed to be merged after it. Here, I wanted to make another proposal for a major overhaul of the API, moving the indication...

As mentioned in some other PR, I started working on improving the CoAP over TCP implementation, adding the necessary logic for exchanging messages. Connecting to a (plain) TCP server and...

Is it possible to use just pure dart for DTLS instead of openssl like this: ` import 'dart:io'; import 'dart:async'; Future createDtlsConnection() async { // Create a SecurityContext object final...

When we try to read a value like: await client.put('Json', payload: payload); messages are comming in network/coap_network_openssl.dart in the _dtlsConnection?.received.listen part, but only if I add a delay before the...