Skip to content

A lua mqtt client which support MQTT version 3.1.1

Notifications You must be signed in to change notification settings

Yongke/luamqttc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 8, 2018
c21d4e2 · Feb 8, 2018

History

42 Commits
Feb 22, 2017
Jul 21, 2016
Feb 8, 2018
Nov 15, 2017
Feb 27, 2017
Oct 30, 2017
Feb 21, 2017
Jun 4, 2016
Feb 22, 2017
Feb 22, 2017
Feb 8, 2018
Jun 4, 2016

Repository files navigation

luamqttc - An lua mqtt client

Codeship Status for Yongke/luamqttc

luamqttc is base on the paho Embedded MQTT C Client Library - MQTTPacket.

It also depends on luasocket and luasec.

Supported features:

  • MQTT version v3.1.1
  • Authentication
  • QOS of 0, 1, 2
  • Last will topic
  • SSL

Note

  • To avoid 1) luasec package from luarocks repo can not load and 2) 100% cpu usage problem, you can install luasec manually from https://github.com/Yongke/luasec
  • org.eclipse.paho.mqtt.embedded-c is compiled by default in little-endian byte order, to compile it in big-endian byte order, use compile flag -DREVERSED

How to build

git clone https://github.com/Yongke/luamqttc.git
luarocks make

How to run tests

Run pato mqtt testing fake broker first

git clone https://github.com/eclipse/paho.mqtt.testing.git
cd paho.mqtt.testing/interoperability && python3 startbroker.py

and then run

lua tests/client_test.lua

After the tests, quit the fake broker(CTRL + C) and you will see the coverage report.

How to use

Check samples in tests/client_test.lua

License

It is dual licensed under the EPL and EDL (see about.html and notice.html for more details). You can choose which of these licenses you want to use the code under.