wolfSSL / wolfMQTT

wolfMQTT is a small, fast, portable MQTT client implementation, including support for TLS 1.3.
https://www.wolfssl.com
GNU General Public License v2.0
521 stars 155 forks source link

Add async support for wolfMQTT #285

Closed dgarske closed 2 years ago

dgarske commented 2 years ago

Add async support to non-blocking example.

# WOLFSSL:
./configure --enable-asynccrypt && make && sudo make install

# WOLFMQTT:
./configure --enable-nonblock && make
./examples/nbclient/nbclient -h localhost -t -T

ZD13719