Mercurial > prosody-modules
comparison mod_pubsub_mqtt/mod_pubsub_mqtt.lua @ 5832:5afc8273c5ef
mod_pubsub_mqtt: Fix syntax error
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 30 Jan 2024 14:26:14 +0000 |
parents | 801f64e6d4e9 |
children | 58df53eefa28 |
comparison
equal
deleted
inserted
replaced
5831:801f64e6d4e9 | 5832:5afc8273c5ef |
---|---|
165 default_port = 1883; | 165 default_port = 1883; |
166 listener = mqtt_listener; | 166 listener = mqtt_listener; |
167 }); | 167 }); |
168 | 168 |
169 module:provides("net", { | 169 module:provides("net", { |
170 name = "pubsub_mqtt_tls" | 170 name = "pubsub_mqtt_tls"; |
171 encryption = "ssl"; | 171 encryption = "ssl"; |
172 default_port = 8883; | 172 default_port = 8883; |
173 listener = mqtt_listener; | 173 listener = mqtt_listener; |
174 }); | 174 }); |
175 | 175 |