rcpp_framework/modules/mqtt_server/mqtt_broker
Relintai 6517a70fd7 Simple mqtt broker module for a small project that I have to do. Will probably get removed later. It uses https://github.com/inyotech/mqtt_broker . 2021-05-01 17:42:25 +02:00
..
src Simple mqtt broker module for a small project that I have to do. Will probably get removed later. It uses https://github.com/inyotech/mqtt_broker . 2021-05-01 17:42:25 +02:00
HEAD Simple mqtt broker module for a small project that I have to do. Will probably get removed later. It uses https://github.com/inyotech/mqtt_broker . 2021-05-01 17:42:25 +02:00
LICENSE.txt Simple mqtt broker module for a small project that I have to do. Will probably get removed later. It uses https://github.com/inyotech/mqtt_broker . 2021-05-01 17:42:25 +02:00
README.md Simple mqtt broker module for a small project that I have to do. Will probably get removed later. It uses https://github.com/inyotech/mqtt_broker . 2021-05-01 17:42:25 +02:00

README.md

MQTT broker and clients

About

The MQTT (MQ Telemetry Transport) publish/subscribe protocol is a simple lightweight messaging protocol for distributed network connected devices. It provides low overhead, reliable connectivity for resource constrained devices.

This is an open source, asynchronous, C++ implementation of the broker (server) and connecting clients. The implementation follows the 3.1.1 OASIS standard available here.

Installation

Requirements

Asynchronous networking support requires the Libevent networking library. Other than that there are no other external run-time dependencies.

Verified platforms.

  • Ubuntu Linux 16.04 (gcc 5.4.0)
  • Mac OSX 10.11 (llvm 7.3.0)

Building

  1. Clone this repository.
   $ git clone https://github.com/inyotech/mqtt_broker.git
   $ cd mqtt_broker
  1. Install the google tests framework
   $ pushd test/lib
   $ git clone https://github.com/google/googletest.git
   $ popd
  1. Create a build directory.
   $ mkdir build
   $ cd build
  1. Generate build files.
   $ cmake ..
  1. Build
   $ make

Example

  • Open a terminal and execute the broker.
   $ mqtt_broker
  • In a second terminal execute a subscriber.
   $ mqtt_client_sub --topic 'a/b/c'
  • Execute a publisher in a third terminal.
   $ mqtt_client_pub --topic 'a/b/c' --message 'published message'

Documentation

Doxygen documentation is available here.

License

This software is licensed under the MIT License. See the LICENSE.TXT file for details.

TODO

  • Client Will not implemented.
  • Retained message publication not implemented.
  • SSL support not implemented.