From bccb3ca92917d71548ba28f213419994486ae7c5 Mon Sep 17 00:00:00 2001 From: Ian Craggs Date: Thu, 21 May 2020 20:23:48 +0100 Subject: [PATCH] Fix up library names in README --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 76dcff19..3d1fd642 100644 --- a/README.md +++ b/README.md @@ -12,17 +12,15 @@ Synchronous and various asynchronous programming models are supported. ## Libraries -The Paho C client comprises four shared libraries: +The Paho C client comprises four variant libraries, shared or static: - * libmqttv3a.so - asynchronous (MQTTAsync) - * libmqttv3as.so - asynchronous with SSL (MQTTAsync) - * libmqttv3c.so - "classic" / synchronous (MQTTClient) - * libmqttv3cs.so - "classic" / synchronous with SSL (MQTTClient) + * paho-mqtt3a - asynchronous (MQTTAsync) + * paho-mqtt3as - asynchronous with SSL (MQTTAsync) + * paho-mqtt3c - "classic" / synchronous (MQTTClient) + * paho-mqtt3cs - "classic" / synchronous with SSL (MQTTClient) [Which Paho C API to use, with some history, for context](https://modelbasedtesting.co.uk/2013/10/13/which-paho-mqtt-c-api-to-use-and-some-history/) -Optionally, using the CMake build, you can build static versions of those libraries. - ## Usage and API Detailed API documentation [is available online](https://www.eclipse.org/paho/files/mqttdoc/MQTTClient/html/index.html). It is also available by building the Doxygen docs in the ``doc`` directory.