├── .editorconfig ├── .github ├── issue_template.md ├── labeler.yml ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ ├── coverity-scan-develop.yml │ ├── coverity-scan-fixes.yml │ ├── delete-old-workflow-runs.yml │ ├── issue-labler.yml │ ├── lock.yml │ ├── mosquitto-cmake.yml │ ├── mosquitto-make.yml │ ├── windows-x86.yml │ └── windows.yml ├── .gitignore ├── CITATION.cff ├── CMakeLists.txt ├── CONTRIBUTING.md ├── ChangeLog.txt ├── LICENSE.txt ├── Makefile ├── NOTICE.md ├── README-compiling.md ├── README-letsencrypt.md ├── README-tests.md ├── README-windows.txt ├── README.md ├── SECURITY.md ├── THANKS.txt ├── about.html ├── aclfile.example ├── apps ├── CMakeLists.txt ├── Makefile ├── db_dump │ ├── Makefile │ ├── db_dump.c │ ├── db_dump.h │ ├── print.c │ └── stubs.c ├── mosquitto_ctrl │ ├── CMakeLists.txt │ ├── Makefile │ ├── client.c │ ├── dynsec.c │ ├── dynsec_client.c │ ├── dynsec_group.c │ ├── dynsec_role.c │ ├── example.c │ ├── mosquitto_ctrl.c │ ├── mosquitto_ctrl.h │ └── options.c └── mosquitto_passwd │ ├── CMakeLists.txt │ ├── Makefile │ ├── get_password.c │ ├── get_password.h │ └── mosquitto_passwd.c ├── client ├── CMakeLists.txt ├── Makefile ├── args.txt ├── client_props.c ├── client_shared.c ├── client_shared.h ├── pub_client.c ├── pub_shared.c ├── pub_shared.h ├── pub_test_properties ├── rr_client.c ├── sub_client.c ├── sub_client_output.c ├── sub_client_output.h ├── sub_test_fixed_width └── sub_test_properties ├── cmake └── FindcJSON.cmake ├── config.h ├── config.mk ├── deps ├── uthash.h └── utlist.h ├── doc ├── historical │ ├── old-regex.txt │ └── topic-match.kds └── joss-paper │ ├── codemeta.json │ ├── paper.bib │ └── paper.md ├── docker ├── 1.6-openssl │ ├── Dockerfile │ ├── README.md │ └── docker-entrypoint.sh ├── 2.0-openssl │ ├── Dockerfile │ ├── README.md │ ├── docker-entrypoint.sh │ └── mosquitto-no-auth.conf ├── README.md ├── generic │ ├── Dockerfile │ ├── README.md │ ├── docker-entrypoint.sh │ └── mosquitto-no-auth.conf └── local │ ├── Dockerfile │ ├── README.md │ └── docker-entrypoint.sh ├── edl-v10 ├── epl-v20 ├── examples ├── mysql_log │ ├── Makefile │ └── mysql_log.c ├── publish │ └── basic-1.c ├── subscribe │ └── basic-1.c ├── subscribe_simple │ ├── Makefile │ ├── callback.c │ ├── multiple.c │ └── single.c └── temperature_conversion │ ├── Makefile │ ├── main.cpp │ ├── readme.txt │ ├── temperature_conversion.cpp │ └── temperature_conversion.h ├── include ├── mosquitto.h ├── mosquitto_broker.h ├── mosquitto_plugin.h └── mqtt_protocol.h ├── installer ├── mosquitto.nsi └── mosquitto64.nsi ├── lib ├── CMakeLists.txt ├── Makefile ├── actions.c ├── alias_mosq.c ├── alias_mosq.h ├── callbacks.c ├── connect.c ├── cpp │ ├── CMakeLists.txt │ ├── Makefile │ ├── mosquittopp.cpp │ └── mosquittopp.h ├── handle_auth.c ├── handle_connack.c ├── handle_disconnect.c ├── handle_ping.c ├── handle_pubackcomp.c ├── handle_publish.c ├── handle_pubrec.c ├── handle_pubrel.c ├── handle_suback.c ├── handle_unsuback.c ├── helpers.c ├── linker.version ├── logging_mosq.c ├── logging_mosq.h ├── loop.c ├── memory_mosq.c ├── memory_mosq.h ├── messages_mosq.c ├── messages_mosq.h ├── misc_mosq.c ├── misc_mosq.h ├── mosquitto.c ├── mosquitto_internal.h ├── net_mosq.c ├── net_mosq.h ├── net_mosq_ocsp.c ├── options.c ├── packet_datatypes.c ├── packet_mosq.c ├── packet_mosq.h ├── property_mosq.c ├── property_mosq.h ├── pthread_compat.h ├── read_handle.c ├── read_handle.h ├── send_connect.c ├── send_disconnect.c ├── send_mosq.c ├── send_mosq.h ├── send_publish.c ├── send_subscribe.c ├── send_unsubscribe.c ├── socks_mosq.c ├── socks_mosq.h ├── srv_mosq.c ├── strings_mosq.c ├── thread_mosq.c ├── time_mosq.c ├── time_mosq.h ├── tls_mosq.c ├── tls_mosq.h ├── utf8_mosq.c ├── util_mosq.c ├── util_mosq.h ├── util_topic.c ├── will_mosq.c └── will_mosq.h ├── libmosquitto.pc.in ├── libmosquittopp.pc.in ├── logo ├── legacy │ ├── mosquitto-14x14.png │ ├── mosquitto-16x16.png │ └── mosquitto.svg ├── mosquitto-logo-min.svg ├── mosquitto-logo-only.svg ├── mosquitto-text-below.svg ├── mosquitto-text-side.svg └── mosquitto.ico ├── man ├── CMakeLists.txt ├── Makefile ├── html.xsl ├── libmosquitto.3.meta ├── libmosquitto.3.xml ├── manpage.xsl ├── mosquitto-tls.7.meta ├── mosquitto-tls.7.xml ├── mosquitto.8.meta ├── mosquitto.8.xml ├── mosquitto.conf.5.meta ├── mosquitto.conf.5.xml ├── mosquitto_ctrl.1.meta ├── mosquitto_ctrl.1.xml ├── mosquitto_ctrl_dynsec.1.meta ├── mosquitto_ctrl_dynsec.1.xml ├── mosquitto_passwd.1.meta ├── mosquitto_passwd.1.xml ├── mosquitto_pub.1.meta ├── mosquitto_pub.1.xml ├── mosquitto_rr.1.meta ├── mosquitto_rr.1.xml ├── mosquitto_sub.1.meta ├── mosquitto_sub.1.xml ├── mqtt.7.meta └── mqtt.7.xml ├── misc ├── currentcost │ ├── cc128_log_mysql.pl │ ├── cc128_parse.pl │ ├── cc128_read.pl │ ├── cc128_read.py │ └── gnome-panel │ │ ├── CurrentCostMQTT.py │ │ ├── CurrentCostMQTT.server │ │ └── currentcost.png └── letsencrypt │ └── mosquitto-copy.sh ├── mosquitto.conf ├── plugins ├── CMakeLists.txt ├── Makefile ├── README.md ├── auth-by-ip │ ├── CMakeLists.txt │ ├── Makefile │ └── mosquitto_auth_by_ip.c ├── deny-protocol-version │ ├── CMakeLists.txt │ ├── Makefile │ ├── mosquitto_deny_protocol_version.c │ ├── test.conf │ └── test.sh ├── dynamic-security │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── acl.c │ ├── auth.c │ ├── clientlist.c │ ├── clients.c │ ├── dynamic_security.h │ ├── grouplist.c │ ├── groups.c │ ├── json_help.c │ ├── json_help.h │ ├── plugin.c │ ├── rolelist.c │ ├── roles.c │ └── sub_matches_sub.c ├── message-timestamp │ ├── CMakeLists.txt │ ├── Makefile │ └── mosquitto_message_timestamp.c └── payload-modification │ ├── CMakeLists.txt │ ├── Makefile │ └── mosquitto_payload_modification.c ├── pskfile.example ├── pwfile.example ├── security └── mosquitto.apparmor ├── service ├── monit │ └── mosquitto.monit ├── svscan │ └── run ├── systemd │ ├── README │ ├── mosquitto.service.notify │ └── mosquitto.service.simple └── upstart │ └── mosquitto.conf ├── set-version.sh ├── snap ├── local │ ├── default_config.conf │ └── launcher.sh └── snapcraft.yaml ├── src ├── CMakeLists.txt ├── Makefile ├── bridge.c ├── bridge_topic.c ├── conf.c ├── conf_includedir.c ├── context.c ├── control.c ├── database.c ├── handle_auth.c ├── handle_connack.c ├── handle_connect.c ├── handle_disconnect.c ├── handle_publish.c ├── handle_subscribe.c ├── handle_unsubscribe.c ├── keepalive.c ├── lib_load.h ├── linker-macosx.syms ├── linker.syms ├── logging.c ├── loop.c ├── memory_public.c ├── mosquitto.c ├── mosquitto_broker_internal.h ├── mux.c ├── mux.h ├── mux_epoll.c ├── mux_poll.c ├── net.c ├── password_mosq.c ├── password_mosq.h ├── persist.h ├── persist_read.c ├── persist_read_v234.c ├── persist_read_v5.c ├── persist_write.c ├── persist_write_v5.c ├── plugin.c ├── plugin_debug.c ├── plugin_defer.c ├── plugin_public.c ├── property_broker.c ├── read_handle.c ├── retain.c ├── security.c ├── security_default.c ├── send_auth.c ├── send_connack.c ├── send_suback.c ├── send_unsuback.c ├── service.c ├── session_expiry.c ├── signals.c ├── subs.c ├── sys_tree.c ├── sys_tree.h ├── topic_tok.c ├── websockets.c ├── will_delay.c └── xtreport.c ├── test ├── Makefile ├── broker │ ├── 01-bad-initial-packets.py │ ├── 01-connect-575314.py │ ├── 01-connect-allow-anonymous.py │ ├── 01-connect-disconnect-v5.py │ ├── 01-connect-max-connections.py │ ├── 01-connect-max-keepalive.py │ ├── 01-connect-take-over.py │ ├── 01-connect-uname-no-password-denied.pwfile │ ├── 01-connect-uname-no-password-denied.py │ ├── 01-connect-uname-or-anon.pwfile │ ├── 01-connect-uname-or-anon.py │ ├── 01-connect-uname-password-denied-no-will.py │ ├── 01-connect-uname-password-denied.pwfile │ ├── 01-connect-uname-password-denied.py │ ├── 01-connect-uname-password-success-no-tls.pwfile │ ├── 01-connect-uname-password-success-no-tls.py │ ├── 01-connect-windows-line-endings.py │ ├── 01-connect-zero-length-id.py │ ├── 02-shared-qos0-v5.py │ ├── 02-subhier-crash.py │ ├── 02-subpub-qos0-long-topic.py │ ├── 02-subpub-qos0-oversize-payload.py │ ├── 02-subpub-qos0-queued-bytes.py │ ├── 02-subpub-qos0-retain-as-publish.py │ ├── 02-subpub-qos0-send-retain.py │ ├── 02-subpub-qos0-subscription-id.py │ ├── 02-subpub-qos0-topic-alias-unknown.py │ ├── 02-subpub-qos0-topic-alias.py │ ├── 02-subpub-qos1-message-expiry-retain.py │ ├── 02-subpub-qos1-message-expiry-will.py │ ├── 02-subpub-qos1-message-expiry.py │ ├── 02-subpub-qos1-nolocal.py │ ├── 02-subpub-qos1-oversize-payload.py │ ├── 02-subpub-qos1.py │ ├── 02-subpub-qos2-1322.py │ ├── 02-subpub-qos2-max-inflight-bytes.py │ ├── 02-subpub-qos2-pubrec-error.py │ ├── 02-subpub-qos2-receive-maximum-1.py │ ├── 02-subpub-qos2-receive-maximum-2.py │ ├── 02-subpub-qos2-receive-maximum-helper.py │ ├── 02-subpub-qos2.py │ ├── 02-subpub-recover-subscriptions.py │ ├── 02-subscribe-dollar-v5.py │ ├── 02-subscribe-invalid-utf8.py │ ├── 02-subscribe-long-topic.py │ ├── 02-subscribe-persistence-flipflop.py │ ├── 03-pattern-matching.py │ ├── 03-publish-b2c-disconnect-qos1.py │ ├── 03-publish-b2c-disconnect-qos2.py │ ├── 03-publish-b2c-qos1-len.py │ ├── 03-publish-b2c-qos2-len.py │ ├── 03-publish-c2b-disconnect-qos2.py │ ├── 03-publish-c2b-qos2-len.py │ ├── 03-publish-dollar-v5.py │ ├── 03-publish-dollar.py │ ├── 03-publish-invalid-utf8.py │ ├── 03-publish-long-topic.py │ ├── 03-publish-qos1-max-inflight-expire.py │ ├── 03-publish-qos1-max-inflight.py │ ├── 03-publish-qos1-no-subscribers-v5.py │ ├── 03-publish-qos1-queued-bytes.conf │ ├── 03-publish-qos1-queued-bytes.py │ ├── 03-publish-qos1-retain-disabled.py │ ├── 03-publish-qos1.py │ ├── 03-publish-qos2-dup.py │ ├── 03-publish-qos2-max-inflight.py │ ├── 03-publish-qos2.py │ ├── 04-retain-check-source-persist-diff-port.py │ ├── 04-retain-check-source-persist.py │ ├── 04-retain-check-source.py │ ├── 04-retain-clear-multiple.py │ ├── 04-retain-qos0-clear.py │ ├── 04-retain-qos0-fresh.py │ ├── 04-retain-qos0-repeated.py │ ├── 04-retain-qos0.py │ ├── 04-retain-qos1-qos0.py │ ├── 04-retain-upgrade-outgoing-qos.py │ ├── 05-clean-session-qos1.py │ ├── 05-session-expiry-v5.py │ ├── 06-bridge-b2br-disconnect-qos1.py │ ├── 06-bridge-b2br-disconnect-qos2.py │ ├── 06-bridge-b2br-late-connection-retain.py │ ├── 06-bridge-b2br-late-connection.py │ ├── 06-bridge-b2br-remapping.py │ ├── 06-bridge-br2b-disconnect-qos1.py │ ├── 06-bridge-br2b-disconnect-qos2.py │ ├── 06-bridge-br2b-remapping.py │ ├── 06-bridge-clean-session-core.py │ ├── 06-bridge-clean-session-csF-lcsF.py │ ├── 06-bridge-clean-session-csF-lcsN.py │ ├── 06-bridge-clean-session-csF-lcsT.py │ ├── 06-bridge-clean-session-csT-lcsF.py │ ├── 06-bridge-clean-session-csT-lcsN.py │ ├── 06-bridge-clean-session-csT-lcsT.py │ ├── 06-bridge-fail-persist-resend-qos1.py │ ├── 06-bridge-fail-persist-resend-qos2.py │ ├── 06-bridge-no-local.py │ ├── 06-bridge-outgoing-retain.py │ ├── 06-bridge-per-listener-settings.py │ ├── 06-bridge-reconnect-local-out.py │ ├── 06-bridge-remap-receive-wildcard.py │ ├── 07-will-control.py │ ├── 07-will-delay-invalid-573191.py │ ├── 07-will-delay-reconnect.py │ ├── 07-will-delay-recover.py │ ├── 07-will-delay-session-expiry.py │ ├── 07-will-delay-session-expiry2.py │ ├── 07-will-delay.py │ ├── 07-will-disconnect-with-will.py │ ├── 07-will-invalid-utf8.py │ ├── 07-will-no-flag.py │ ├── 07-will-null-topic.py │ ├── 07-will-null.py │ ├── 07-will-oversize-payload.py │ ├── 07-will-per-listener.py │ ├── 07-will-properties.py │ ├── 07-will-qos0.py │ ├── 07-will-reconnect-1273.py │ ├── 07-will-takeover.py │ ├── 08-ssl-bridge-helper.py │ ├── 08-ssl-bridge.py │ ├── 08-ssl-connect-cert-auth-crl.py │ ├── 08-ssl-connect-cert-auth-expired.py │ ├── 08-ssl-connect-cert-auth-revoked.py │ ├── 08-ssl-connect-cert-auth-without.py │ ├── 08-ssl-connect-cert-auth.py │ ├── 08-ssl-connect-identity.py │ ├── 08-ssl-connect-no-auth-wrong-ca.py │ ├── 08-ssl-connect-no-auth.py │ ├── 08-ssl-connect-no-identity.py │ ├── 08-ssl-hup-disconnect.py │ ├── 08-tls-psk-bridge.psk │ ├── 08-tls-psk-bridge.py │ ├── 08-tls-psk-pub.psk │ ├── 08-tls-psk-pub.py │ ├── 09-acl-access-variants.py │ ├── 09-acl-change.py │ ├── 09-acl-empty-file.py │ ├── 09-auth-bad-method.py │ ├── 09-extended-auth-change-username.py │ ├── 09-extended-auth-multistep-reauth.py │ ├── 09-extended-auth-multistep.py │ ├── 09-extended-auth-reauth.py │ ├── 09-extended-auth-single.py │ ├── 09-extended-auth-single2.py │ ├── 09-plugin-acl-change.py │ ├── 09-plugin-auth-acl-pub.py │ ├── 09-plugin-auth-acl-sub-denied.py │ ├── 09-plugin-auth-acl-sub.py │ ├── 09-plugin-auth-context-params.py │ ├── 09-plugin-auth-defer-unpwd-fail.py │ ├── 09-plugin-auth-defer-unpwd-success.py │ ├── 09-plugin-auth-msg-params.py │ ├── 09-plugin-auth-unpwd-fail.py │ ├── 09-plugin-auth-unpwd-success.py │ ├── 09-plugin-auth-v2-unpwd-fail.py │ ├── 09-plugin-auth-v2-unpwd-success.py │ ├── 09-plugin-publish.py │ ├── 09-plugin-tick.py │ ├── 09-pwfile-parse-invalid.py │ ├── 10-listener-mount-point.py │ ├── 11-message-expiry.py │ ├── 11-persistent-subscription-no-local.py │ ├── 11-persistent-subscription-v5.py │ ├── 11-persistent-subscription.py │ ├── 11-pub-props.py │ ├── 11-subscription-id.py │ ├── 12-prop-assigned-client-identifier.py │ ├── 12-prop-maximum-packet-size-broker.py │ ├── 12-prop-maximum-packet-size-publish-qos1.py │ ├── 12-prop-maximum-packet-size-publish-qos2.py │ ├── 12-prop-response-topic-correlation-data.py │ ├── 12-prop-response-topic.py │ ├── 12-prop-server-keepalive.py │ ├── 12-prop-subpub-content-type.py │ ├── 12-prop-subpub-payload-format.py │ ├── 13-malformed-publish-v5.py │ ├── 13-malformed-subscribe-v5.py │ ├── 13-malformed-unsubscribe-v5.py │ ├── 14-dynsec-acl.py │ ├── 14-dynsec-anon-group.py │ ├── 14-dynsec-auth.py │ ├── 14-dynsec-client-invalid.py │ ├── 14-dynsec-client.py │ ├── 14-dynsec-default-access.py │ ├── 14-dynsec-disable-client.py │ ├── 14-dynsec-group-invalid.py │ ├── 14-dynsec-group.py │ ├── 14-dynsec-modify-client.py │ ├── 14-dynsec-modify-group.py │ ├── 14-dynsec-modify-role.py │ ├── 14-dynsec-plugin-invalid.py │ ├── 14-dynsec-role-invalid.py │ ├── 14-dynsec-role.py │ ├── Makefile │ ├── c │ │ ├── 08-tls-psk-bridge.c │ │ ├── 08-tls-psk-pub.c │ │ ├── Makefile │ │ ├── auth_plugin_acl.c │ │ ├── auth_plugin_acl_change.c │ │ ├── auth_plugin_acl_sub_denied.c │ │ ├── auth_plugin_context_params.c │ │ ├── auth_plugin_extended_multiple.c │ │ ├── auth_plugin_extended_reauth.c │ │ ├── auth_plugin_extended_single.c │ │ ├── auth_plugin_extended_single2.c │ │ ├── auth_plugin_msg_params.c │ │ ├── auth_plugin_publish.c │ │ ├── auth_plugin_pwd.c │ │ ├── auth_plugin_v2.c │ │ ├── auth_plugin_v4.c │ │ ├── auth_plugin_v5.c │ │ ├── auth_plugin_v5_handle_message.c │ │ ├── auth_plugin_v5_handle_tick.c │ │ ├── mosquitto_plugin_v2.h │ │ └── plugin_control.c │ ├── data │ │ ├── AUTH.json │ │ ├── CONNACK.json │ │ ├── CONNECT.json │ │ ├── DISCONNECT.json │ │ ├── FLOW.json │ │ ├── FORBIDDEN.json │ │ ├── PINGREQ.json │ │ ├── PINGRESP.json │ │ ├── PUBACK.json │ │ ├── PUBCOMP.json │ │ ├── PUBLISH.json │ │ ├── PUBREC.json │ │ ├── PUBREL.json │ │ ├── REGRESSION.json │ │ ├── SUBACK.json │ │ ├── SUBSCRIBE.json │ │ ├── UNSUBACK.json │ │ ├── UNSUBSCRIBE.json │ │ └── ZZ-broker-check.json │ ├── dynamic-security-init.json │ ├── mosq_test_helper.py │ ├── msg_sequence_test.py │ ├── prop_subpub_helper.py │ ├── readme.txt │ └── test.py ├── client │ ├── Makefile │ └── test.sh ├── lib │ ├── 01-con-discon-success.py │ ├── 01-keepalive-pingreq.py │ ├── 01-no-clean-session.py │ ├── 01-server-keepalive-pingreq.py │ ├── 01-unpwd-set.py │ ├── 01-will-set.py │ ├── 01-will-unpwd-set.py │ ├── 02-subscribe-qos0.py │ ├── 02-subscribe-qos1.py │ ├── 02-subscribe-qos2.py │ ├── 02-unsubscribe-multiple-v5.py │ ├── 02-unsubscribe-v5.py │ ├── 02-unsubscribe.py │ ├── 03-publish-b2c-qos1-unexpected-puback.py │ ├── 03-publish-b2c-qos1.py │ ├── 03-publish-b2c-qos2-len.py │ ├── 03-publish-b2c-qos2-unexpected-pubcomp.py │ ├── 03-publish-b2c-qos2-unexpected-pubrel.py │ ├── 03-publish-b2c-qos2.py │ ├── 03-publish-c2b-qos1-disconnect.py │ ├── 03-publish-c2b-qos1-len.py │ ├── 03-publish-c2b-qos1-receive-maximum.py │ ├── 03-publish-c2b-qos1-timeout.py │ ├── 03-publish-c2b-qos2-disconnect.py │ ├── 03-publish-c2b-qos2-len.py │ ├── 03-publish-c2b-qos2-maximum-qos-0.py │ ├── 03-publish-c2b-qos2-maximum-qos-1.py │ ├── 03-publish-c2b-qos2-pubrec-error.py │ ├── 03-publish-c2b-qos2-receive-maximum-1.py │ ├── 03-publish-c2b-qos2-receive-maximum-2.py │ ├── 03-publish-c2b-qos2-timeout.py │ ├── 03-publish-c2b-qos2.py │ ├── 03-publish-qos0-no-payload.py │ ├── 03-publish-qos0.py │ ├── 03-request-response-correlation.py │ ├── 03-request-response.py │ ├── 04-retain-qos0.py │ ├── 08-ssl-bad-cacert.py │ ├── 08-ssl-connect-cert-auth-enc.py │ ├── 08-ssl-connect-cert-auth.py │ ├── 08-ssl-connect-no-auth.py │ ├── 08-ssl-fake-cacert.py │ ├── 09-util-topic-tokenise.py │ ├── 11-prop-oversize-packet.py │ ├── 11-prop-recv-qos0.py │ ├── 11-prop-recv-qos1.py │ ├── 11-prop-recv-qos2.py │ ├── 11-prop-send-content-type.py │ ├── 11-prop-send-payload-format.py │ ├── Makefile │ ├── c │ │ ├── 01-con-discon-success.c │ │ ├── 01-keepalive-pingreq.c │ │ ├── 01-no-clean-session.c │ │ ├── 01-server-keepalive-pingreq.c │ │ ├── 01-unpwd-set.c │ │ ├── 01-will-set.c │ │ ├── 01-will-unpwd-set.c │ │ ├── 02-subscribe-qos0.c │ │ ├── 02-subscribe-qos1-async1.c │ │ ├── 02-subscribe-qos1-async2.c │ │ ├── 02-subscribe-qos1.c │ │ ├── 02-subscribe-qos2.c │ │ ├── 02-unsubscribe-multiple-v5.c │ │ ├── 02-unsubscribe-v5.c │ │ ├── 02-unsubscribe.c │ │ ├── 03-publish-b2c-qos1-unexpected-puback.c │ │ ├── 03-publish-b2c-qos1.c │ │ ├── 03-publish-b2c-qos2-len.c │ │ ├── 03-publish-b2c-qos2-unexpected-pubcomp.c │ │ ├── 03-publish-b2c-qos2-unexpected-pubrel.c │ │ ├── 03-publish-b2c-qos2.c │ │ ├── 03-publish-c2b-qos1-disconnect.c │ │ ├── 03-publish-c2b-qos1-len.c │ │ ├── 03-publish-c2b-qos1-receive-maximum.c │ │ ├── 03-publish-c2b-qos2-disconnect.c │ │ ├── 03-publish-c2b-qos2-len.c │ │ ├── 03-publish-c2b-qos2-maximum-qos-0.c │ │ ├── 03-publish-c2b-qos2-maximum-qos-1.c │ │ ├── 03-publish-c2b-qos2-pubrec-error.c │ │ ├── 03-publish-c2b-qos2-receive-maximum-1.c │ │ ├── 03-publish-c2b-qos2-receive-maximum-2.c │ │ ├── 03-publish-c2b-qos2.c │ │ ├── 03-publish-qos0-no-payload.c │ │ ├── 03-publish-qos0.c │ │ ├── 03-request-response-1.c │ │ ├── 03-request-response-2.c │ │ ├── 03-request-response-correlation-1.c │ │ ├── 04-retain-qos0.c │ │ ├── 08-ssl-bad-cacert.c │ │ ├── 08-ssl-connect-cert-auth-custom-ssl-ctx-default.c │ │ ├── 08-ssl-connect-cert-auth-custom-ssl-ctx.c │ │ ├── 08-ssl-connect-cert-auth-enc.c │ │ ├── 08-ssl-connect-cert-auth.c │ │ ├── 08-ssl-connect-no-auth.c │ │ ├── 08-ssl-fake-cacert.c │ │ ├── 09-util-topic-tokenise.c │ │ ├── 11-prop-oversize-packet.c │ │ ├── 11-prop-recv-qos0.c │ │ ├── 11-prop-recv-qos1.c │ │ ├── 11-prop-recv-qos2.c │ │ ├── 11-prop-send-content-type.c │ │ ├── 11-prop-send-payload-format.c │ │ └── Makefile │ ├── cpp │ │ ├── 01-con-discon-success.cpp │ │ ├── 01-keepalive-pingreq.cpp │ │ ├── 01-no-clean-session.cpp │ │ ├── 01-unpwd-set.cpp │ │ ├── 01-will-set.cpp │ │ ├── 01-will-unpwd-set.cpp │ │ ├── 02-subscribe-qos0.cpp │ │ ├── 02-subscribe-qos1.cpp │ │ ├── 02-subscribe-qos2.cpp │ │ ├── 02-unsubscribe.cpp │ │ ├── 03-publish-b2c-qos1.cpp │ │ ├── 03-publish-b2c-qos2.cpp │ │ ├── 03-publish-c2b-qos1-disconnect.cpp │ │ ├── 03-publish-c2b-qos2-disconnect.cpp │ │ ├── 03-publish-c2b-qos2.cpp │ │ ├── 03-publish-qos0-no-payload.cpp │ │ ├── 03-publish-qos0.cpp │ │ ├── 04-retain-qos0.cpp │ │ ├── 08-ssl-bad-cacert.cpp │ │ ├── 08-ssl-connect-cert-auth-enc.cpp │ │ ├── 08-ssl-connect-cert-auth.cpp │ │ ├── 08-ssl-connect-no-auth.cpp │ │ ├── 08-ssl-fake-cacert.cpp │ │ ├── 09-util-topic-tokenise.cpp │ │ └── Makefile │ ├── mosq_test_helper.py │ └── test.py ├── mosq_test.py ├── mqtt5_opts.py ├── mqtt5_props.py ├── mqtt5_rc.py ├── old │ ├── Makefile │ ├── msgsps_common.h │ ├── msgsps_pub.c │ └── msgsps_sub.c ├── ptest.py ├── random │ ├── Makefile │ ├── auth_plugin.c │ ├── pwfile │ ├── random.conf │ ├── random_client.py │ └── test.py ├── ssl │ ├── all-ca.crt │ ├── client-encrypted.crt │ ├── client-encrypted.key │ ├── client-expired.crt │ ├── client-expired.key │ ├── client-revoked.crt │ ├── client-revoked.key │ ├── client.crt │ ├── client.key │ ├── crl-empty.pem │ ├── crl.pem │ ├── gen.sh │ ├── openssl.cnf │ ├── readme.txt │ ├── rootCA │ │ ├── crlnumber │ │ ├── index.txt.attr │ │ └── serial │ ├── server-expired.crt │ ├── server-expired.key │ ├── server.crt │ ├── server.key │ ├── signingCA │ │ ├── crlnumber │ │ ├── index.txt.attr │ │ └── serial │ ├── test-alt-ca.crt │ ├── test-alt-ca.key │ ├── test-bad-root-ca.crt │ ├── test-bad-root-ca.key │ ├── test-fake-root-ca.crt │ ├── test-fake-root-ca.key │ ├── test-root-ca.crt │ ├── test-root-ca.key │ ├── test-signing-ca.crt │ └── test-signing-ca.key └── unit │ ├── Makefile │ ├── bridge_topic_test.c │ ├── datatype_read.c │ ├── datatype_write.c │ ├── files │ ├── persist_read │ │ ├── corrupt-header-long.test-db │ │ ├── corrupt-header-short.test-db │ │ ├── empty.test-db │ │ ├── unsupported-version.test-db │ │ ├── v3-bad-chunk.test-db │ │ ├── v3-cfg-bad-dbid.test-db │ │ ├── v3-cfg-truncated.test-db │ │ ├── v3-cfg.test-db │ │ ├── v3-client-message.test-db │ │ ├── v3-client.test-db │ │ ├── v3-message-store.test-db │ │ ├── v3-retain.test-db │ │ ├── v3-sub.test-db │ │ ├── v4-cfg.test-db │ │ ├── v4-message-store.test-db │ │ ├── v5-bad-chunk.test-db │ │ ├── v5-cfg-truncated.test-db │ │ ├── v5-client.test-db │ │ ├── v6-cfg.test-db │ │ ├── v6-client-message-props.test-db │ │ ├── v6-client-message.test-db │ │ ├── v6-client.test-db │ │ ├── v6-message-store-props.test-db │ │ ├── v6-message-store.test-db │ │ ├── v6-retain.test-db │ │ └── v6-sub.test-db │ └── persist_write │ │ ├── empty.test-db │ │ ├── v4-full.test-db │ │ └── v6-message-store-no-ref.test-db │ ├── misc_trim_test.c │ ├── persist_read_stubs.c │ ├── persist_read_test.c │ ├── persist_write_stubs.c │ ├── persist_write_test.c │ ├── property_add.c │ ├── property_read.c │ ├── property_user_read.c │ ├── property_write.c │ ├── publish_test.c │ ├── stubs.c │ ├── subs_stubs.c │ ├── subs_test.c │ ├── test.c │ ├── tls_stubs.c │ ├── tls_test.c │ ├── utf8.c │ └── util_topic_test.c ├── vcpkg.json └── www ├── README.md ├── conf.py ├── files ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── blog │ └── uploads │ │ ├── 2010 │ │ └── 06 │ │ │ ├── powermeter-example-150x150.png │ │ │ ├── powermeter-example-300x138.png │ │ │ └── powermeter-example.png │ │ ├── 2011 │ │ └── 08 │ │ │ ├── image-150x150.png │ │ │ ├── image-300x225.png │ │ │ └── image.png │ │ ├── 2012 │ │ └── 08 │ │ │ ├── IMAG0006-150x150.jpg │ │ │ ├── IMAG0006-300x199.jpg │ │ │ └── IMAG0006.jpg │ │ ├── 2014 │ │ └── 05 │ │ │ ├── 14098345978_c15d12f19a_z-150x150.jpg │ │ │ ├── 14098345978_c15d12f19a_z-300x200.jpg │ │ │ └── 14098345978_c15d12f19a_z.jpg │ │ ├── 2016 │ │ └── 05 │ │ │ ├── stickers-150x150.jpg │ │ │ ├── stickers-300x225.jpg │ │ │ └── stickers.jpg │ │ └── 2017 │ │ └── 03 │ │ ├── img_20170308_155049248_33196894011_o-1024x576.jpg │ │ ├── img_20170308_155049248_33196894011_o-150x150.jpg │ │ ├── img_20170308_155049248_33196894011_o-300x169.jpg │ │ ├── img_20170308_155049248_33196894011_o-768x432.jpg │ │ └── img_20170308_155049248_33196894011_o.jpg ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── favicon.svg ├── images │ ├── eclipse_logo_colour.png │ ├── github-icon.jpg │ ├── iot-logo.png │ ├── mosquitto-logo-47.png │ ├── mosquitto-logo.png │ ├── mosquitto-text-side-28.png │ └── mosquitto-text-side.png ├── manifest.json ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── safari-pinned-tab.svg └── stickers │ ├── index.html │ ├── mosquitto-colour-deselected.png │ ├── mosquitto-colour.png │ ├── mosquitto-mono-deselected.png │ └── mosquitto-mono.png ├── man ├── pages ├── documentation.md ├── documentation │ ├── authentication-methods.md │ ├── dynamic-security.md │ ├── migrating-to-2-0.md │ └── using-the-snap.md ├── download.md ├── index.html ├── roadmap.md └── security.md ├── plugins ├── __init__.py └── docbookmanpage │ ├── docbookmanpage.plugin │ ├── docbookmanpage.py │ └── html.xsl ├── posts ├── 2009 │ └── 12 │ │ ├── version-0-2-released.md │ │ └── version-0-3-released.md ├── 2010 │ ├── 10 │ │ ├── man-page-translations.md │ │ ├── one-year-old.md │ │ └── version-0-8-3-released.md │ ├── 11 │ │ ├── distro-packaging.md │ │ ├── mosquitto-0-9test2.md │ │ └── version-0-9-released.md │ ├── 12 │ │ └── version-0-9-1-released.md │ ├── 01 │ │ ├── mailing-list-irc.md │ │ ├── version-0-4-1-released.md │ │ └── version-0-4-released.md │ ├── 02 │ │ └── version-0-4-2-released.md │ ├── 03 │ │ ├── google-powermeter.md │ │ ├── upgrading-to-0-5-1.md │ │ ├── version-0-5-1-released.md │ │ ├── version-0-5-2-released.md │ │ ├── version-0-5-3-released.md │ │ └── version-0-5-4-released.md │ ├── 04 │ │ ├── help-wanted-rpm-packaging.md │ │ ├── mind-control-mqtt.md │ │ └── oggcamp.md │ ├── 05 │ │ ├── fedora-packages-available.md │ │ ├── gentoo-ebuilds-available.md │ │ ├── mosquitto-org.md │ │ ├── mqtt-push-on-android.md │ │ ├── mqtt-wiki.md │ │ ├── version-0-6-1-released.md │ │ └── version-0-6-released.md │ ├── 06 │ │ ├── automation-has-the-oven-warmed-up-yet.md │ │ ├── google-powermeter-step-by-step.attachments.json │ │ ├── google-powermeter-step-by-step.md │ │ ├── mosquitto-0-7rc1.md │ │ └── version-0-7-released.md │ ├── 07 │ │ ├── mosquitto-on-opensuse-11-3.md │ │ └── mqtt-client-library.md │ ├── 08 │ │ ├── compiling-mosquitto-on-mac-os-x.md │ │ ├── mosquitto-running-on-mac-os-x.md │ │ ├── mqtt-v3-1.md │ │ ├── version-0-8-1-released.md │ │ ├── version-0-8-2.md │ │ └── version-0-8-released.md │ └── 09 │ │ ├── debian-packages.md │ │ └── mqtt-with-php.md ├── 2011 │ ├── 10 │ │ ├── mqtt-power-usage-on-android.md │ │ └── two.md │ ├── 11 │ │ ├── android-mqtt-example-project.md │ │ ├── ibm-java-and-c-clients-to-be-open-source.md │ │ ├── new-linux-repositories.md │ │ ├── version-0-14-1-released.md │ │ ├── version-0-14-2-released.md │ │ └── version-0-14-released.md │ ├── 12 │ │ ├── mqtt-on-nanode.md │ │ └── version-0-14-3-released.md │ ├── 01 │ │ ├── mosquitto-for-slackware.md │ │ └── mqtt-news.md │ ├── 02 │ │ ├── lightweight-messaging-and-linux.md │ │ ├── mosquitto-on-maemo.md │ │ ├── mqtt-on-android.md │ │ └── version-0-9-2-released.md │ ├── 03 │ │ ├── api-documentation.md │ │ ├── mosquitto-in-mac-homebrew.md │ │ └── version-0-9-3-released.md │ ├── 04 │ │ └── version-0-10-released.md │ ├── 05 │ │ ├── mqtt-ontology.md │ │ └── version-0-10-1-released.md │ ├── 06 │ │ ├── nanode-a-cheap-networked-arduino-clone.md │ │ ├── version-0-10-2-released.md │ │ ├── version-0-11-1-released.md │ │ ├── version-0-11-2-released.md │ │ └── version-0-11-released.md │ ├── 07 │ │ ├── debian-and-ubuntu-packaging.md │ │ ├── lua-mqtt-client.md │ │ ├── mosquitto-on-qnx.md │ │ ├── version-0-11-3-released.md │ │ ├── version-0-12-released.md │ │ └── wireshark-mqtt-decoder.md │ ├── 08 │ │ ├── arch-linux-package.md │ │ ├── facebook-using-mqtt.attachments.json │ │ ├── facebook-using-mqtt.md │ │ ├── mosquitto-on-openwrt.md │ │ └── mqtt-standardisation.md │ └── 09 │ │ └── version-0-13-released.md ├── 2012 │ ├── 10 │ │ └── version-1-0-4-released.md │ ├── 11 │ │ ├── making-mosquitto-packages-for-debian-yourself.md │ │ └── version-1-0-5-released.md │ ├── 12 │ │ ├── libmosquitto-go-bindings.md │ │ └── version-1-1-released.md │ ├── 01 │ │ ├── challenge-web-based-mqtt-graphing.md │ │ ├── do-you-use-mqtt.md │ │ ├── mosquitto-test-server.md │ │ └── version-0-14-4-released.md │ ├── 02 │ │ ├── mqtt2pachube.md │ │ └── version-0-15-released.md │ ├── 03 │ │ ├── quick-start-guide-for-mqtt-with-pachube.md │ │ └── upcoming-incompatible-library-changes.md │ ├── 05 │ │ └── python-client-module-available-for-testing.md │ ├── 06 │ │ ├── ipv6-on-test-server.md │ │ └── ssl-support-on-test-server.md │ ├── 07 │ │ └── upcoming-release.md │ ├── 08 │ │ ├── baby.attachments.json │ │ ├── baby.md │ │ ├── bugfix-coming-soon.md │ │ ├── version-1-0-1-released.md │ │ ├── version-1-0-2-released.md │ │ └── version-1-0-released.md │ └── 09 │ │ ├── updating-password-files.md │ │ └── version-1-0-3-released.md ├── 2013 │ ├── 10 │ │ └── version-1-2-2-released.md │ ├── 12 │ │ ├── paho-mqtt-python-client.md │ │ └── version-1-2-3-released.md │ ├── 01 │ │ ├── mosquitto-debian-repository.md │ │ ├── version-1-1-1-released.md │ │ └── version-1-1-2-released.md │ ├── 02 │ │ ├── mqtt-standardisation-oasis-call-for-participation.md │ │ └── version-1-1-3-released.md │ ├── 04 │ │ └── some-interesting-mqtt-things.md │ ├── 05 │ │ └── mosquitto-javascript-client-deprecated.md │ ├── 07 │ │ ├── authentication-plugins.md │ │ └── version-1-2-near-complete.md │ ├── 08 │ │ ├── mosquitto-on-fedora.md │ │ ├── mqtt-watchdir.md │ │ └── version-1-2-released.md │ └── 09 │ │ └── version-1-2-1-released.md ├── 2014 │ ├── 10 │ │ ├── mosquitto-and-poodle.md │ │ ├── unintended-change-of-behaviour-in-1-3-4.md │ │ └── version-1-3-5-released.md │ ├── 03 │ │ ├── version-1-3-1-released.md │ │ └── version-1-3-released.md │ ├── 05 │ │ ├── new-arrival.attachments.json │ │ └── new-arrival.md │ ├── 07 │ │ └── version-1-3-2-released.md │ └── 08 │ │ ├── version-1-3-3-released.md │ │ └── version-1-3-4-released.md ├── 2015 │ ├── 11 │ │ └── version-1-4-5-released.md │ ├── 12 │ │ ├── using-lets-encrypt-certificates-with-mosquitto.md │ │ └── version-1-4-7-released.md │ ├── 01 │ │ └── seeking-sponsorship.md │ ├── 02 │ │ └── version-1-4-released.md │ ├── 04 │ │ └── version-1-4-1-released.md │ ├── 05 │ │ ├── mosquitto-and-current-unreleased-libwebsockets-branch.md │ │ └── version-1-4-2-released.md │ ├── 08 │ │ └── version-1-4-3-released.md │ └── 09 │ │ └── version-1-4-4-released.md ├── 2016 │ ├── 12 │ │ └── pre-christmas-update.md │ ├── 01 │ │ └── test6-mosquitto-org.md │ ├── 02 │ │ └── version-1-4-8-released.md │ ├── 03 │ │ ├── logo-contest-results-for-shortlisting.md │ │ ├── logo-contest.md │ │ └── repository-moved-to-github.md │ ├── 05 │ │ ├── stickers.attachments.json │ │ └── stickers.md │ ├── 06 │ │ └── version-1-4-9-released.md │ └── 08 │ │ ├── mqtt-v5-draft-features.md │ │ └── version-1-4-10-released.md ├── 2017 │ ├── 02 │ │ └── version-1-4-11-released.md │ ├── 03 │ │ ├── for-the-final-time.attachments.json │ │ └── for-the-final-time.md │ ├── 05 │ │ └── security-advisory-cve-2017-7650.md │ ├── 06 │ │ ├── citing-eclipse-mosquitto.md │ │ └── security-advisory-cve-2017-9868.md │ └── 07 │ │ ├── version-1-4-13-released.md │ │ └── version-1-4-14-released.md ├── 2018 │ ├── 11 │ │ ├── mqtt5-progress.md │ │ └── version-154-released.md │ ├── 12 │ │ └── version-155-released.md │ ├── 01 │ │ └── mosquitto-debian-repo-key-updated.md │ ├── 02 │ │ └── security-advisory-cve-2017-7651-cve-2017-7652.md │ ├── 05 │ │ ├── press-release.md │ │ └── version-1-5-released.md │ ├── 08 │ │ ├── updated-debian-repository-backend.md │ │ └── version-151-released.md │ └── 09 │ │ ├── security-advisory-cve-2018-12543.md │ │ └── version-152-released.md ├── 2019 │ ├── 11 │ │ └── version-1-6-8-released.md │ ├── 02 │ │ ├── mqtt5-test-release.md │ │ ├── version-1-5-6-released.md │ │ ├── version-1-5-7-released.md │ │ └── version-1-5-8-released.md │ ├── 04 │ │ ├── version-1-6-1-released.md │ │ ├── version-1-6-2-released.md │ │ └── version-1-6-released.md │ ├── 06 │ │ └── version-1-6-3-released.md │ ├── 08 │ │ └── version-1-6-4-released.md │ └── 09 │ │ ├── version-1-6-5-released.md │ │ ├── version-1-6-6-released.md │ │ └── version-1-6-7-released.md ├── 2020 │ ├── 12 │ │ ├── version-2-0-0-released.md │ │ ├── version-2-0-2-released.md │ │ ├── version-2-0-3-released.md │ │ └── version-2-0-4-released.md │ ├── 02 │ │ └── version-1-6-9-released.md │ ├── 05 │ │ └── version-1-6-10-released.md │ ├── 06 │ │ ├── mosquitto-ubuntu-appliance.md │ │ └── test-mosquitto-org-cert-updated.md │ └── 08 │ │ ├── version-1-6-11-released.md │ │ └── version-1-6-12-released.md ├── 2021 │ ├── 10 │ │ └── version-2-0-13-released.md │ ├── 11 │ │ └── version-2-0-14-released.md │ ├── 01 │ │ ├── version-2-0-5-released.md │ │ └── version-2-0-6-released.md │ ├── 02 │ │ ├── version-2-0-7-released.md │ │ └── version-2-0-8-released.md │ ├── 03 │ │ └── version-2-0-9-released.md │ ├── 04 │ │ └── version-2-0-10-released.md │ ├── 06 │ │ └── version-2-0-11-released.md │ └── 08 │ │ └── version-2-0-12-released.md ├── 2022 │ └── 08 │ │ └── version-2-0-15-released.md ├── 2023 │ ├── 08 │ │ ├── version-2-0-16-released.md │ │ └── version-2-0-17-released.md │ └── 09 │ │ └── version-2-0-18-released.md ├── 2024 │ └── 10 │ │ ├── version-2-0-19-released.md │ │ └── version-2-0-20-released.md └── 2025 │ ├── 03 │ └── version-2-0-21-released.md │ └── 07 │ └── version-2-0-22-released.md ├── templates └── book.tmpl └── themes └── mosquitto ├── assets └── css │ ├── bulma.css │ ├── local.css │ └── man.css ├── engine ├── parent └── templates ├── base.tmpl ├── base_footer.tmpl ├── base_header.tmpl ├── base_helper.tmpl ├── index.tmpl ├── post.tmpl ├── post_header.tmpl └── story.tmpl /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- 1 | 'Status: Available': 2 | - '/.*/' 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/coverity-scan-develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/workflows/coverity-scan-develop.yml -------------------------------------------------------------------------------- /.github/workflows/coverity-scan-fixes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/workflows/coverity-scan-fixes.yml -------------------------------------------------------------------------------- /.github/workflows/issue-labler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/workflows/issue-labler.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/mosquitto-cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/workflows/mosquitto-cmake.yml -------------------------------------------------------------------------------- /.github/workflows/mosquitto-make.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/workflows/mosquitto-make.yml -------------------------------------------------------------------------------- /.github/workflows/windows-x86.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/workflows/windows-x86.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README-compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/README-compiling.md -------------------------------------------------------------------------------- /README-letsencrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/README-letsencrypt.md -------------------------------------------------------------------------------- /README-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/README-tests.md -------------------------------------------------------------------------------- /README-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/README-windows.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THANKS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/THANKS.txt -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/about.html -------------------------------------------------------------------------------- /aclfile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/aclfile.example -------------------------------------------------------------------------------- /apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/Makefile -------------------------------------------------------------------------------- /apps/db_dump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/db_dump/Makefile -------------------------------------------------------------------------------- /apps/db_dump/db_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/db_dump/db_dump.c -------------------------------------------------------------------------------- /apps/db_dump/db_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/db_dump/db_dump.h -------------------------------------------------------------------------------- /apps/db_dump/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/db_dump/print.c -------------------------------------------------------------------------------- /apps/db_dump/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/db_dump/stubs.c -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/CMakeLists.txt -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/Makefile -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/client.c -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/dynsec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/dynsec.c -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/dynsec_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/dynsec_client.c -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/dynsec_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/dynsec_group.c -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/dynsec_role.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/dynsec_role.c -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/example.c -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/mosquitto_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/mosquitto_ctrl.c -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/mosquitto_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/mosquitto_ctrl.h -------------------------------------------------------------------------------- /apps/mosquitto_ctrl/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_ctrl/options.c -------------------------------------------------------------------------------- /apps/mosquitto_passwd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_passwd/CMakeLists.txt -------------------------------------------------------------------------------- /apps/mosquitto_passwd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_passwd/Makefile -------------------------------------------------------------------------------- /apps/mosquitto_passwd/get_password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_passwd/get_password.c -------------------------------------------------------------------------------- /apps/mosquitto_passwd/get_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_passwd/get_password.h -------------------------------------------------------------------------------- /apps/mosquitto_passwd/mosquitto_passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/apps/mosquitto_passwd/mosquitto_passwd.c -------------------------------------------------------------------------------- /client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/CMakeLists.txt -------------------------------------------------------------------------------- /client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/Makefile -------------------------------------------------------------------------------- /client/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/args.txt -------------------------------------------------------------------------------- /client/client_props.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/client_props.c -------------------------------------------------------------------------------- /client/client_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/client_shared.c -------------------------------------------------------------------------------- /client/client_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/client_shared.h -------------------------------------------------------------------------------- /client/pub_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/pub_client.c -------------------------------------------------------------------------------- /client/pub_shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/pub_shared.c -------------------------------------------------------------------------------- /client/pub_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/pub_shared.h -------------------------------------------------------------------------------- /client/pub_test_properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/pub_test_properties -------------------------------------------------------------------------------- /client/rr_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/rr_client.c -------------------------------------------------------------------------------- /client/sub_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/sub_client.c -------------------------------------------------------------------------------- /client/sub_client_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/sub_client_output.c -------------------------------------------------------------------------------- /client/sub_client_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/sub_client_output.h -------------------------------------------------------------------------------- /client/sub_test_fixed_width: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/sub_test_fixed_width -------------------------------------------------------------------------------- /client/sub_test_properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/client/sub_test_properties -------------------------------------------------------------------------------- /cmake/FindcJSON.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/cmake/FindcJSON.cmake -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/config.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/config.mk -------------------------------------------------------------------------------- /deps/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/deps/uthash.h -------------------------------------------------------------------------------- /deps/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/deps/utlist.h -------------------------------------------------------------------------------- /doc/historical/old-regex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/doc/historical/old-regex.txt -------------------------------------------------------------------------------- /doc/historical/topic-match.kds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/doc/historical/topic-match.kds -------------------------------------------------------------------------------- /doc/joss-paper/codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/doc/joss-paper/codemeta.json -------------------------------------------------------------------------------- /doc/joss-paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/doc/joss-paper/paper.bib -------------------------------------------------------------------------------- /doc/joss-paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/doc/joss-paper/paper.md -------------------------------------------------------------------------------- /docker/1.6-openssl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/1.6-openssl/Dockerfile -------------------------------------------------------------------------------- /docker/1.6-openssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/1.6-openssl/README.md -------------------------------------------------------------------------------- /docker/1.6-openssl/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/1.6-openssl/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/2.0-openssl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/2.0-openssl/Dockerfile -------------------------------------------------------------------------------- /docker/2.0-openssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/2.0-openssl/README.md -------------------------------------------------------------------------------- /docker/2.0-openssl/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/2.0-openssl/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/2.0-openssl/mosquitto-no-auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/2.0-openssl/mosquitto-no-auth.conf -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/generic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/generic/Dockerfile -------------------------------------------------------------------------------- /docker/generic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/generic/README.md -------------------------------------------------------------------------------- /docker/generic/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/generic/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker/generic/mosquitto-no-auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/generic/mosquitto-no-auth.conf -------------------------------------------------------------------------------- /docker/local/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/local/Dockerfile -------------------------------------------------------------------------------- /docker/local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/local/README.md -------------------------------------------------------------------------------- /docker/local/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/docker/local/docker-entrypoint.sh -------------------------------------------------------------------------------- /edl-v10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/edl-v10 -------------------------------------------------------------------------------- /epl-v20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/epl-v20 -------------------------------------------------------------------------------- /examples/mysql_log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/mysql_log/Makefile -------------------------------------------------------------------------------- /examples/mysql_log/mysql_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/mysql_log/mysql_log.c -------------------------------------------------------------------------------- /examples/publish/basic-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/publish/basic-1.c -------------------------------------------------------------------------------- /examples/subscribe/basic-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/subscribe/basic-1.c -------------------------------------------------------------------------------- /examples/subscribe_simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/subscribe_simple/Makefile -------------------------------------------------------------------------------- /examples/subscribe_simple/callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/subscribe_simple/callback.c -------------------------------------------------------------------------------- /examples/subscribe_simple/multiple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/subscribe_simple/multiple.c -------------------------------------------------------------------------------- /examples/subscribe_simple/single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/subscribe_simple/single.c -------------------------------------------------------------------------------- /examples/temperature_conversion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/temperature_conversion/Makefile -------------------------------------------------------------------------------- /examples/temperature_conversion/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/temperature_conversion/main.cpp -------------------------------------------------------------------------------- /examples/temperature_conversion/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/examples/temperature_conversion/readme.txt -------------------------------------------------------------------------------- /include/mosquitto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/include/mosquitto.h -------------------------------------------------------------------------------- /include/mosquitto_broker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/include/mosquitto_broker.h -------------------------------------------------------------------------------- /include/mosquitto_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/include/mosquitto_plugin.h -------------------------------------------------------------------------------- /include/mqtt_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/include/mqtt_protocol.h -------------------------------------------------------------------------------- /installer/mosquitto.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/installer/mosquitto.nsi -------------------------------------------------------------------------------- /installer/mosquitto64.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/installer/mosquitto64.nsi -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/actions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/actions.c -------------------------------------------------------------------------------- /lib/alias_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/alias_mosq.c -------------------------------------------------------------------------------- /lib/alias_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/alias_mosq.h -------------------------------------------------------------------------------- /lib/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/callbacks.c -------------------------------------------------------------------------------- /lib/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/connect.c -------------------------------------------------------------------------------- /lib/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /lib/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/cpp/Makefile -------------------------------------------------------------------------------- /lib/cpp/mosquittopp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/cpp/mosquittopp.cpp -------------------------------------------------------------------------------- /lib/cpp/mosquittopp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/cpp/mosquittopp.h -------------------------------------------------------------------------------- /lib/handle_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_auth.c -------------------------------------------------------------------------------- /lib/handle_connack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_connack.c -------------------------------------------------------------------------------- /lib/handle_disconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_disconnect.c -------------------------------------------------------------------------------- /lib/handle_ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_ping.c -------------------------------------------------------------------------------- /lib/handle_pubackcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_pubackcomp.c -------------------------------------------------------------------------------- /lib/handle_publish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_publish.c -------------------------------------------------------------------------------- /lib/handle_pubrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_pubrec.c -------------------------------------------------------------------------------- /lib/handle_pubrel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_pubrel.c -------------------------------------------------------------------------------- /lib/handle_suback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_suback.c -------------------------------------------------------------------------------- /lib/handle_unsuback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/handle_unsuback.c -------------------------------------------------------------------------------- /lib/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/helpers.c -------------------------------------------------------------------------------- /lib/linker.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/linker.version -------------------------------------------------------------------------------- /lib/logging_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/logging_mosq.c -------------------------------------------------------------------------------- /lib/logging_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/logging_mosq.h -------------------------------------------------------------------------------- /lib/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/loop.c -------------------------------------------------------------------------------- /lib/memory_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/memory_mosq.c -------------------------------------------------------------------------------- /lib/memory_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/memory_mosq.h -------------------------------------------------------------------------------- /lib/messages_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/messages_mosq.c -------------------------------------------------------------------------------- /lib/messages_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/messages_mosq.h -------------------------------------------------------------------------------- /lib/misc_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/misc_mosq.c -------------------------------------------------------------------------------- /lib/misc_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/misc_mosq.h -------------------------------------------------------------------------------- /lib/mosquitto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/mosquitto.c -------------------------------------------------------------------------------- /lib/mosquitto_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/mosquitto_internal.h -------------------------------------------------------------------------------- /lib/net_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/net_mosq.c -------------------------------------------------------------------------------- /lib/net_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/net_mosq.h -------------------------------------------------------------------------------- /lib/net_mosq_ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/net_mosq_ocsp.c -------------------------------------------------------------------------------- /lib/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/options.c -------------------------------------------------------------------------------- /lib/packet_datatypes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/packet_datatypes.c -------------------------------------------------------------------------------- /lib/packet_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/packet_mosq.c -------------------------------------------------------------------------------- /lib/packet_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/packet_mosq.h -------------------------------------------------------------------------------- /lib/property_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/property_mosq.c -------------------------------------------------------------------------------- /lib/property_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/property_mosq.h -------------------------------------------------------------------------------- /lib/pthread_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/pthread_compat.h -------------------------------------------------------------------------------- /lib/read_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/read_handle.c -------------------------------------------------------------------------------- /lib/read_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/read_handle.h -------------------------------------------------------------------------------- /lib/send_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/send_connect.c -------------------------------------------------------------------------------- /lib/send_disconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/send_disconnect.c -------------------------------------------------------------------------------- /lib/send_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/send_mosq.c -------------------------------------------------------------------------------- /lib/send_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/send_mosq.h -------------------------------------------------------------------------------- /lib/send_publish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/send_publish.c -------------------------------------------------------------------------------- /lib/send_subscribe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/send_subscribe.c -------------------------------------------------------------------------------- /lib/send_unsubscribe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/send_unsubscribe.c -------------------------------------------------------------------------------- /lib/socks_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/socks_mosq.c -------------------------------------------------------------------------------- /lib/socks_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/socks_mosq.h -------------------------------------------------------------------------------- /lib/srv_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/srv_mosq.c -------------------------------------------------------------------------------- /lib/strings_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/strings_mosq.c -------------------------------------------------------------------------------- /lib/thread_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/thread_mosq.c -------------------------------------------------------------------------------- /lib/time_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/time_mosq.c -------------------------------------------------------------------------------- /lib/time_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/time_mosq.h -------------------------------------------------------------------------------- /lib/tls_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/tls_mosq.c -------------------------------------------------------------------------------- /lib/tls_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/tls_mosq.h -------------------------------------------------------------------------------- /lib/utf8_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/utf8_mosq.c -------------------------------------------------------------------------------- /lib/util_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/util_mosq.c -------------------------------------------------------------------------------- /lib/util_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/util_mosq.h -------------------------------------------------------------------------------- /lib/util_topic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/util_topic.c -------------------------------------------------------------------------------- /lib/will_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/will_mosq.c -------------------------------------------------------------------------------- /lib/will_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/lib/will_mosq.h -------------------------------------------------------------------------------- /libmosquitto.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/libmosquitto.pc.in -------------------------------------------------------------------------------- /libmosquittopp.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/libmosquittopp.pc.in -------------------------------------------------------------------------------- /logo/legacy/mosquitto-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/logo/legacy/mosquitto-14x14.png -------------------------------------------------------------------------------- /logo/legacy/mosquitto-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/logo/legacy/mosquitto-16x16.png -------------------------------------------------------------------------------- /logo/legacy/mosquitto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/logo/legacy/mosquitto.svg -------------------------------------------------------------------------------- /logo/mosquitto-logo-min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/logo/mosquitto-logo-min.svg -------------------------------------------------------------------------------- /logo/mosquitto-logo-only.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/logo/mosquitto-logo-only.svg -------------------------------------------------------------------------------- /logo/mosquitto-text-below.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/logo/mosquitto-text-below.svg -------------------------------------------------------------------------------- /logo/mosquitto-text-side.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/logo/mosquitto-text-side.svg -------------------------------------------------------------------------------- /logo/mosquitto.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/logo/mosquitto.ico -------------------------------------------------------------------------------- /man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/CMakeLists.txt -------------------------------------------------------------------------------- /man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/Makefile -------------------------------------------------------------------------------- /man/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/html.xsl -------------------------------------------------------------------------------- /man/libmosquitto.3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/libmosquitto.3.meta -------------------------------------------------------------------------------- /man/libmosquitto.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/libmosquitto.3.xml -------------------------------------------------------------------------------- /man/manpage.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/manpage.xsl -------------------------------------------------------------------------------- /man/mosquitto-tls.7.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto-tls.7.meta -------------------------------------------------------------------------------- /man/mosquitto-tls.7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto-tls.7.xml -------------------------------------------------------------------------------- /man/mosquitto.8.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto.8.meta -------------------------------------------------------------------------------- /man/mosquitto.8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto.8.xml -------------------------------------------------------------------------------- /man/mosquitto.conf.5.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto.conf.5.meta -------------------------------------------------------------------------------- /man/mosquitto.conf.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto.conf.5.xml -------------------------------------------------------------------------------- /man/mosquitto_ctrl.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_ctrl.1.meta -------------------------------------------------------------------------------- /man/mosquitto_ctrl.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_ctrl.1.xml -------------------------------------------------------------------------------- /man/mosquitto_ctrl_dynsec.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_ctrl_dynsec.1.meta -------------------------------------------------------------------------------- /man/mosquitto_ctrl_dynsec.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_ctrl_dynsec.1.xml -------------------------------------------------------------------------------- /man/mosquitto_passwd.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_passwd.1.meta -------------------------------------------------------------------------------- /man/mosquitto_passwd.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_passwd.1.xml -------------------------------------------------------------------------------- /man/mosquitto_pub.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_pub.1.meta -------------------------------------------------------------------------------- /man/mosquitto_pub.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_pub.1.xml -------------------------------------------------------------------------------- /man/mosquitto_rr.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_rr.1.meta -------------------------------------------------------------------------------- /man/mosquitto_rr.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_rr.1.xml -------------------------------------------------------------------------------- /man/mosquitto_sub.1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_sub.1.meta -------------------------------------------------------------------------------- /man/mosquitto_sub.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mosquitto_sub.1.xml -------------------------------------------------------------------------------- /man/mqtt.7.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mqtt.7.meta -------------------------------------------------------------------------------- /man/mqtt.7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/man/mqtt.7.xml -------------------------------------------------------------------------------- /misc/currentcost/cc128_log_mysql.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/misc/currentcost/cc128_log_mysql.pl -------------------------------------------------------------------------------- /misc/currentcost/cc128_parse.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/misc/currentcost/cc128_parse.pl -------------------------------------------------------------------------------- /misc/currentcost/cc128_read.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/misc/currentcost/cc128_read.pl -------------------------------------------------------------------------------- /misc/currentcost/cc128_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/misc/currentcost/cc128_read.py -------------------------------------------------------------------------------- /misc/currentcost/gnome-panel/currentcost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/misc/currentcost/gnome-panel/currentcost.png -------------------------------------------------------------------------------- /misc/letsencrypt/mosquitto-copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/misc/letsencrypt/mosquitto-copy.sh -------------------------------------------------------------------------------- /mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/mosquitto.conf -------------------------------------------------------------------------------- /plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/Makefile -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/auth-by-ip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/auth-by-ip/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/auth-by-ip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/auth-by-ip/Makefile -------------------------------------------------------------------------------- /plugins/auth-by-ip/mosquitto_auth_by_ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/auth-by-ip/mosquitto_auth_by_ip.c -------------------------------------------------------------------------------- /plugins/deny-protocol-version/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/deny-protocol-version/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/deny-protocol-version/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/deny-protocol-version/Makefile -------------------------------------------------------------------------------- /plugins/deny-protocol-version/test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/deny-protocol-version/test.conf -------------------------------------------------------------------------------- /plugins/deny-protocol-version/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/deny-protocol-version/test.sh -------------------------------------------------------------------------------- /plugins/dynamic-security/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/dynamic-security/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/Makefile -------------------------------------------------------------------------------- /plugins/dynamic-security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/README.md -------------------------------------------------------------------------------- /plugins/dynamic-security/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/acl.c -------------------------------------------------------------------------------- /plugins/dynamic-security/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/auth.c -------------------------------------------------------------------------------- /plugins/dynamic-security/clientlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/clientlist.c -------------------------------------------------------------------------------- /plugins/dynamic-security/clients.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/clients.c -------------------------------------------------------------------------------- /plugins/dynamic-security/dynamic_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/dynamic_security.h -------------------------------------------------------------------------------- /plugins/dynamic-security/grouplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/grouplist.c -------------------------------------------------------------------------------- /plugins/dynamic-security/groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/groups.c -------------------------------------------------------------------------------- /plugins/dynamic-security/json_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/json_help.c -------------------------------------------------------------------------------- /plugins/dynamic-security/json_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/json_help.h -------------------------------------------------------------------------------- /plugins/dynamic-security/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/plugin.c -------------------------------------------------------------------------------- /plugins/dynamic-security/rolelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/rolelist.c -------------------------------------------------------------------------------- /plugins/dynamic-security/roles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/roles.c -------------------------------------------------------------------------------- /plugins/dynamic-security/sub_matches_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/dynamic-security/sub_matches_sub.c -------------------------------------------------------------------------------- /plugins/message-timestamp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/message-timestamp/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/message-timestamp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/message-timestamp/Makefile -------------------------------------------------------------------------------- /plugins/payload-modification/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/payload-modification/CMakeLists.txt -------------------------------------------------------------------------------- /plugins/payload-modification/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/plugins/payload-modification/Makefile -------------------------------------------------------------------------------- /pskfile.example: -------------------------------------------------------------------------------- 1 | id:deadbeef 2 | easy:12345 3 | -------------------------------------------------------------------------------- /pwfile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/pwfile.example -------------------------------------------------------------------------------- /security/mosquitto.apparmor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/security/mosquitto.apparmor -------------------------------------------------------------------------------- /service/monit/mosquitto.monit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/service/monit/mosquitto.monit -------------------------------------------------------------------------------- /service/svscan/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/service/svscan/run -------------------------------------------------------------------------------- /service/systemd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/service/systemd/README -------------------------------------------------------------------------------- /service/systemd/mosquitto.service.notify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/service/systemd/mosquitto.service.notify -------------------------------------------------------------------------------- /service/systemd/mosquitto.service.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/service/systemd/mosquitto.service.simple -------------------------------------------------------------------------------- /service/upstart/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/service/upstart/mosquitto.conf -------------------------------------------------------------------------------- /set-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/set-version.sh -------------------------------------------------------------------------------- /snap/local/default_config.conf: -------------------------------------------------------------------------------- 1 | persistence false 2 | user root 3 | -------------------------------------------------------------------------------- /snap/local/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/snap/local/launcher.sh -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/bridge.c -------------------------------------------------------------------------------- /src/bridge_topic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/bridge_topic.c -------------------------------------------------------------------------------- /src/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/conf.c -------------------------------------------------------------------------------- /src/conf_includedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/conf_includedir.c -------------------------------------------------------------------------------- /src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/context.c -------------------------------------------------------------------------------- /src/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/control.c -------------------------------------------------------------------------------- /src/database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/database.c -------------------------------------------------------------------------------- /src/handle_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/handle_auth.c -------------------------------------------------------------------------------- /src/handle_connack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/handle_connack.c -------------------------------------------------------------------------------- /src/handle_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/handle_connect.c -------------------------------------------------------------------------------- /src/handle_disconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/handle_disconnect.c -------------------------------------------------------------------------------- /src/handle_publish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/handle_publish.c -------------------------------------------------------------------------------- /src/handle_subscribe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/handle_subscribe.c -------------------------------------------------------------------------------- /src/handle_unsubscribe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/handle_unsubscribe.c -------------------------------------------------------------------------------- /src/keepalive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/keepalive.c -------------------------------------------------------------------------------- /src/lib_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/lib_load.h -------------------------------------------------------------------------------- /src/linker-macosx.syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/linker-macosx.syms -------------------------------------------------------------------------------- /src/linker.syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/linker.syms -------------------------------------------------------------------------------- /src/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/logging.c -------------------------------------------------------------------------------- /src/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/loop.c -------------------------------------------------------------------------------- /src/memory_public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/memory_public.c -------------------------------------------------------------------------------- /src/mosquitto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/mosquitto.c -------------------------------------------------------------------------------- /src/mosquitto_broker_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/mosquitto_broker_internal.h -------------------------------------------------------------------------------- /src/mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/mux.c -------------------------------------------------------------------------------- /src/mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/mux.h -------------------------------------------------------------------------------- /src/mux_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/mux_epoll.c -------------------------------------------------------------------------------- /src/mux_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/mux_poll.c -------------------------------------------------------------------------------- /src/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/net.c -------------------------------------------------------------------------------- /src/password_mosq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/password_mosq.c -------------------------------------------------------------------------------- /src/password_mosq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/password_mosq.h -------------------------------------------------------------------------------- /src/persist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/persist.h -------------------------------------------------------------------------------- /src/persist_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/persist_read.c -------------------------------------------------------------------------------- /src/persist_read_v234.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/persist_read_v234.c -------------------------------------------------------------------------------- /src/persist_read_v5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/persist_read_v5.c -------------------------------------------------------------------------------- /src/persist_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/persist_write.c -------------------------------------------------------------------------------- /src/persist_write_v5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/persist_write_v5.c -------------------------------------------------------------------------------- /src/plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/plugin.c -------------------------------------------------------------------------------- /src/plugin_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/plugin_debug.c -------------------------------------------------------------------------------- /src/plugin_defer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/plugin_defer.c -------------------------------------------------------------------------------- /src/plugin_public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/plugin_public.c -------------------------------------------------------------------------------- /src/property_broker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/property_broker.c -------------------------------------------------------------------------------- /src/read_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/read_handle.c -------------------------------------------------------------------------------- /src/retain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/retain.c -------------------------------------------------------------------------------- /src/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/security.c -------------------------------------------------------------------------------- /src/security_default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/security_default.c -------------------------------------------------------------------------------- /src/send_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/send_auth.c -------------------------------------------------------------------------------- /src/send_connack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/send_connack.c -------------------------------------------------------------------------------- /src/send_suback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/send_suback.c -------------------------------------------------------------------------------- /src/send_unsuback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/send_unsuback.c -------------------------------------------------------------------------------- /src/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/service.c -------------------------------------------------------------------------------- /src/session_expiry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/session_expiry.c -------------------------------------------------------------------------------- /src/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/signals.c -------------------------------------------------------------------------------- /src/subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/subs.c -------------------------------------------------------------------------------- /src/sys_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/sys_tree.c -------------------------------------------------------------------------------- /src/sys_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/sys_tree.h -------------------------------------------------------------------------------- /src/topic_tok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/topic_tok.c -------------------------------------------------------------------------------- /src/websockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/websockets.c -------------------------------------------------------------------------------- /src/will_delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/will_delay.c -------------------------------------------------------------------------------- /src/xtreport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/src/xtreport.c -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/broker/01-bad-initial-packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/01-bad-initial-packets.py -------------------------------------------------------------------------------- /test/broker/01-connect-575314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/01-connect-575314.py -------------------------------------------------------------------------------- /test/broker/01-connect-allow-anonymous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/01-connect-allow-anonymous.py -------------------------------------------------------------------------------- /test/broker/01-connect-disconnect-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/01-connect-disconnect-v5.py -------------------------------------------------------------------------------- /test/broker/01-connect-max-connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/01-connect-max-connections.py -------------------------------------------------------------------------------- /test/broker/01-connect-max-keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/01-connect-max-keepalive.py -------------------------------------------------------------------------------- /test/broker/01-connect-take-over.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/01-connect-take-over.py -------------------------------------------------------------------------------- /test/broker/01-connect-uname-or-anon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/01-connect-uname-or-anon.py -------------------------------------------------------------------------------- /test/broker/01-connect-uname-password-success-no-tls.pwfile: -------------------------------------------------------------------------------- 1 | user:password 2 | -------------------------------------------------------------------------------- /test/broker/01-connect-zero-length-id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/01-connect-zero-length-id.py -------------------------------------------------------------------------------- /test/broker/02-shared-qos0-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-shared-qos0-v5.py -------------------------------------------------------------------------------- /test/broker/02-subhier-crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subhier-crash.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos0-long-topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos0-long-topic.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos0-queued-bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos0-queued-bytes.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos0-send-retain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos0-send-retain.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos0-subscription-id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos0-subscription-id.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos0-topic-alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos0-topic-alias.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos1-message-expiry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos1-message-expiry.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos1-nolocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos1-nolocal.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos1.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos2-1322.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos2-1322.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos2-pubrec-error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos2-pubrec-error.py -------------------------------------------------------------------------------- /test/broker/02-subpub-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subpub-qos2.py -------------------------------------------------------------------------------- /test/broker/02-subscribe-dollar-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subscribe-dollar-v5.py -------------------------------------------------------------------------------- /test/broker/02-subscribe-invalid-utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subscribe-invalid-utf8.py -------------------------------------------------------------------------------- /test/broker/02-subscribe-long-topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/02-subscribe-long-topic.py -------------------------------------------------------------------------------- /test/broker/03-pattern-matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-pattern-matching.py -------------------------------------------------------------------------------- /test/broker/03-publish-b2c-disconnect-qos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-b2c-disconnect-qos1.py -------------------------------------------------------------------------------- /test/broker/03-publish-b2c-disconnect-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-b2c-disconnect-qos2.py -------------------------------------------------------------------------------- /test/broker/03-publish-b2c-qos1-len.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-b2c-qos1-len.py -------------------------------------------------------------------------------- /test/broker/03-publish-b2c-qos2-len.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-b2c-qos2-len.py -------------------------------------------------------------------------------- /test/broker/03-publish-c2b-disconnect-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-c2b-disconnect-qos2.py -------------------------------------------------------------------------------- /test/broker/03-publish-c2b-qos2-len.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-c2b-qos2-len.py -------------------------------------------------------------------------------- /test/broker/03-publish-dollar-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-dollar-v5.py -------------------------------------------------------------------------------- /test/broker/03-publish-dollar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-dollar.py -------------------------------------------------------------------------------- /test/broker/03-publish-invalid-utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-invalid-utf8.py -------------------------------------------------------------------------------- /test/broker/03-publish-long-topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-long-topic.py -------------------------------------------------------------------------------- /test/broker/03-publish-qos1-max-inflight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-qos1-max-inflight.py -------------------------------------------------------------------------------- /test/broker/03-publish-qos1-queued-bytes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-qos1-queued-bytes.conf -------------------------------------------------------------------------------- /test/broker/03-publish-qos1-queued-bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-qos1-queued-bytes.py -------------------------------------------------------------------------------- /test/broker/03-publish-qos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-qos1.py -------------------------------------------------------------------------------- /test/broker/03-publish-qos2-dup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-qos2-dup.py -------------------------------------------------------------------------------- /test/broker/03-publish-qos2-max-inflight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-qos2-max-inflight.py -------------------------------------------------------------------------------- /test/broker/03-publish-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/03-publish-qos2.py -------------------------------------------------------------------------------- /test/broker/04-retain-check-source-persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/04-retain-check-source-persist.py -------------------------------------------------------------------------------- /test/broker/04-retain-check-source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/04-retain-check-source.py -------------------------------------------------------------------------------- /test/broker/04-retain-clear-multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/04-retain-clear-multiple.py -------------------------------------------------------------------------------- /test/broker/04-retain-qos0-clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/04-retain-qos0-clear.py -------------------------------------------------------------------------------- /test/broker/04-retain-qos0-fresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/04-retain-qos0-fresh.py -------------------------------------------------------------------------------- /test/broker/04-retain-qos0-repeated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/04-retain-qos0-repeated.py -------------------------------------------------------------------------------- /test/broker/04-retain-qos0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/04-retain-qos0.py -------------------------------------------------------------------------------- /test/broker/04-retain-qos1-qos0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/04-retain-qos1-qos0.py -------------------------------------------------------------------------------- /test/broker/04-retain-upgrade-outgoing-qos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/04-retain-upgrade-outgoing-qos.py -------------------------------------------------------------------------------- /test/broker/05-clean-session-qos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/05-clean-session-qos1.py -------------------------------------------------------------------------------- /test/broker/05-session-expiry-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/05-session-expiry-v5.py -------------------------------------------------------------------------------- /test/broker/06-bridge-b2br-disconnect-qos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-b2br-disconnect-qos1.py -------------------------------------------------------------------------------- /test/broker/06-bridge-b2br-disconnect-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-b2br-disconnect-qos2.py -------------------------------------------------------------------------------- /test/broker/06-bridge-b2br-late-connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-b2br-late-connection.py -------------------------------------------------------------------------------- /test/broker/06-bridge-b2br-remapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-b2br-remapping.py -------------------------------------------------------------------------------- /test/broker/06-bridge-br2b-disconnect-qos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-br2b-disconnect-qos1.py -------------------------------------------------------------------------------- /test/broker/06-bridge-br2b-disconnect-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-br2b-disconnect-qos2.py -------------------------------------------------------------------------------- /test/broker/06-bridge-br2b-remapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-br2b-remapping.py -------------------------------------------------------------------------------- /test/broker/06-bridge-clean-session-core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-clean-session-core.py -------------------------------------------------------------------------------- /test/broker/06-bridge-no-local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-no-local.py -------------------------------------------------------------------------------- /test/broker/06-bridge-outgoing-retain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-outgoing-retain.py -------------------------------------------------------------------------------- /test/broker/06-bridge-reconnect-local-out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/06-bridge-reconnect-local-out.py -------------------------------------------------------------------------------- /test/broker/07-will-control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-control.py -------------------------------------------------------------------------------- /test/broker/07-will-delay-invalid-573191.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-delay-invalid-573191.py -------------------------------------------------------------------------------- /test/broker/07-will-delay-reconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-delay-reconnect.py -------------------------------------------------------------------------------- /test/broker/07-will-delay-recover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-delay-recover.py -------------------------------------------------------------------------------- /test/broker/07-will-delay-session-expiry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-delay-session-expiry.py -------------------------------------------------------------------------------- /test/broker/07-will-delay-session-expiry2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-delay-session-expiry2.py -------------------------------------------------------------------------------- /test/broker/07-will-delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-delay.py -------------------------------------------------------------------------------- /test/broker/07-will-disconnect-with-will.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-disconnect-with-will.py -------------------------------------------------------------------------------- /test/broker/07-will-invalid-utf8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-invalid-utf8.py -------------------------------------------------------------------------------- /test/broker/07-will-no-flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-no-flag.py -------------------------------------------------------------------------------- /test/broker/07-will-null-topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-null-topic.py -------------------------------------------------------------------------------- /test/broker/07-will-null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-null.py -------------------------------------------------------------------------------- /test/broker/07-will-oversize-payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-oversize-payload.py -------------------------------------------------------------------------------- /test/broker/07-will-per-listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-per-listener.py -------------------------------------------------------------------------------- /test/broker/07-will-properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-properties.py -------------------------------------------------------------------------------- /test/broker/07-will-qos0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-qos0.py -------------------------------------------------------------------------------- /test/broker/07-will-reconnect-1273.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-reconnect-1273.py -------------------------------------------------------------------------------- /test/broker/07-will-takeover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/07-will-takeover.py -------------------------------------------------------------------------------- /test/broker/08-ssl-bridge-helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-ssl-bridge-helper.py -------------------------------------------------------------------------------- /test/broker/08-ssl-bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-ssl-bridge.py -------------------------------------------------------------------------------- /test/broker/08-ssl-connect-cert-auth-crl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-ssl-connect-cert-auth-crl.py -------------------------------------------------------------------------------- /test/broker/08-ssl-connect-cert-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-ssl-connect-cert-auth.py -------------------------------------------------------------------------------- /test/broker/08-ssl-connect-identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-ssl-connect-identity.py -------------------------------------------------------------------------------- /test/broker/08-ssl-connect-no-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-ssl-connect-no-auth.py -------------------------------------------------------------------------------- /test/broker/08-ssl-connect-no-identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-ssl-connect-no-identity.py -------------------------------------------------------------------------------- /test/broker/08-ssl-hup-disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-ssl-hup-disconnect.py -------------------------------------------------------------------------------- /test/broker/08-tls-psk-bridge.psk: -------------------------------------------------------------------------------- 1 | psk-test:deadbeef 2 | -------------------------------------------------------------------------------- /test/broker/08-tls-psk-bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-tls-psk-bridge.py -------------------------------------------------------------------------------- /test/broker/08-tls-psk-pub.psk: -------------------------------------------------------------------------------- 1 | psk-id:deadbeef 2 | -------------------------------------------------------------------------------- /test/broker/08-tls-psk-pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/08-tls-psk-pub.py -------------------------------------------------------------------------------- /test/broker/09-acl-access-variants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-acl-access-variants.py -------------------------------------------------------------------------------- /test/broker/09-acl-change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-acl-change.py -------------------------------------------------------------------------------- /test/broker/09-acl-empty-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-acl-empty-file.py -------------------------------------------------------------------------------- /test/broker/09-auth-bad-method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-auth-bad-method.py -------------------------------------------------------------------------------- /test/broker/09-extended-auth-multistep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-extended-auth-multistep.py -------------------------------------------------------------------------------- /test/broker/09-extended-auth-reauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-extended-auth-reauth.py -------------------------------------------------------------------------------- /test/broker/09-extended-auth-single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-extended-auth-single.py -------------------------------------------------------------------------------- /test/broker/09-extended-auth-single2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-extended-auth-single2.py -------------------------------------------------------------------------------- /test/broker/09-plugin-acl-change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-acl-change.py -------------------------------------------------------------------------------- /test/broker/09-plugin-auth-acl-pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-auth-acl-pub.py -------------------------------------------------------------------------------- /test/broker/09-plugin-auth-acl-sub-denied.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-auth-acl-sub-denied.py -------------------------------------------------------------------------------- /test/broker/09-plugin-auth-acl-sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-auth-acl-sub.py -------------------------------------------------------------------------------- /test/broker/09-plugin-auth-context-params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-auth-context-params.py -------------------------------------------------------------------------------- /test/broker/09-plugin-auth-msg-params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-auth-msg-params.py -------------------------------------------------------------------------------- /test/broker/09-plugin-auth-unpwd-fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-auth-unpwd-fail.py -------------------------------------------------------------------------------- /test/broker/09-plugin-auth-unpwd-success.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-auth-unpwd-success.py -------------------------------------------------------------------------------- /test/broker/09-plugin-auth-v2-unpwd-fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-auth-v2-unpwd-fail.py -------------------------------------------------------------------------------- /test/broker/09-plugin-publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-publish.py -------------------------------------------------------------------------------- /test/broker/09-plugin-tick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-plugin-tick.py -------------------------------------------------------------------------------- /test/broker/09-pwfile-parse-invalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/09-pwfile-parse-invalid.py -------------------------------------------------------------------------------- /test/broker/10-listener-mount-point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/10-listener-mount-point.py -------------------------------------------------------------------------------- /test/broker/11-message-expiry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/11-message-expiry.py -------------------------------------------------------------------------------- /test/broker/11-persistent-subscription-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/11-persistent-subscription-v5.py -------------------------------------------------------------------------------- /test/broker/11-persistent-subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/11-persistent-subscription.py -------------------------------------------------------------------------------- /test/broker/11-pub-props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/11-pub-props.py -------------------------------------------------------------------------------- /test/broker/11-subscription-id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/11-subscription-id.py -------------------------------------------------------------------------------- /test/broker/12-prop-response-topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/12-prop-response-topic.py -------------------------------------------------------------------------------- /test/broker/12-prop-server-keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/12-prop-server-keepalive.py -------------------------------------------------------------------------------- /test/broker/12-prop-subpub-content-type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/12-prop-subpub-content-type.py -------------------------------------------------------------------------------- /test/broker/12-prop-subpub-payload-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/12-prop-subpub-payload-format.py -------------------------------------------------------------------------------- /test/broker/13-malformed-publish-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/13-malformed-publish-v5.py -------------------------------------------------------------------------------- /test/broker/13-malformed-subscribe-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/13-malformed-subscribe-v5.py -------------------------------------------------------------------------------- /test/broker/13-malformed-unsubscribe-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/13-malformed-unsubscribe-v5.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-acl.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-anon-group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-anon-group.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-auth.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-client-invalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-client-invalid.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-client.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-default-access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-default-access.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-disable-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-disable-client.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-group-invalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-group-invalid.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-group.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-modify-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-modify-client.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-modify-group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-modify-group.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-modify-role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-modify-role.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-plugin-invalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-plugin-invalid.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-role-invalid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-role-invalid.py -------------------------------------------------------------------------------- /test/broker/14-dynsec-role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/14-dynsec-role.py -------------------------------------------------------------------------------- /test/broker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/Makefile -------------------------------------------------------------------------------- /test/broker/c/08-tls-psk-bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/08-tls-psk-bridge.c -------------------------------------------------------------------------------- /test/broker/c/08-tls-psk-pub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/08-tls-psk-pub.c -------------------------------------------------------------------------------- /test/broker/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/Makefile -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_acl.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_acl_change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_acl_change.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_acl_sub_denied.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_acl_sub_denied.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_context_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_context_params.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_extended_multiple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_extended_multiple.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_extended_reauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_extended_reauth.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_extended_single.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_extended_single.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_extended_single2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_extended_single2.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_msg_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_msg_params.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_publish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_publish.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_pwd.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_v2.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_v4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_v4.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_v5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_v5.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_v5_handle_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_v5_handle_message.c -------------------------------------------------------------------------------- /test/broker/c/auth_plugin_v5_handle_tick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/auth_plugin_v5_handle_tick.c -------------------------------------------------------------------------------- /test/broker/c/mosquitto_plugin_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/mosquitto_plugin_v2.h -------------------------------------------------------------------------------- /test/broker/c/plugin_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/c/plugin_control.c -------------------------------------------------------------------------------- /test/broker/data/AUTH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/AUTH.json -------------------------------------------------------------------------------- /test/broker/data/CONNACK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/CONNACK.json -------------------------------------------------------------------------------- /test/broker/data/CONNECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/CONNECT.json -------------------------------------------------------------------------------- /test/broker/data/DISCONNECT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/DISCONNECT.json -------------------------------------------------------------------------------- /test/broker/data/FLOW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/FLOW.json -------------------------------------------------------------------------------- /test/broker/data/FORBIDDEN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/FORBIDDEN.json -------------------------------------------------------------------------------- /test/broker/data/PINGREQ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/PINGREQ.json -------------------------------------------------------------------------------- /test/broker/data/PINGRESP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/PINGRESP.json -------------------------------------------------------------------------------- /test/broker/data/PUBACK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/PUBACK.json -------------------------------------------------------------------------------- /test/broker/data/PUBCOMP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/PUBCOMP.json -------------------------------------------------------------------------------- /test/broker/data/PUBLISH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/PUBLISH.json -------------------------------------------------------------------------------- /test/broker/data/PUBREC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/PUBREC.json -------------------------------------------------------------------------------- /test/broker/data/PUBREL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/PUBREL.json -------------------------------------------------------------------------------- /test/broker/data/REGRESSION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/REGRESSION.json -------------------------------------------------------------------------------- /test/broker/data/SUBACK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/SUBACK.json -------------------------------------------------------------------------------- /test/broker/data/SUBSCRIBE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/SUBSCRIBE.json -------------------------------------------------------------------------------- /test/broker/data/UNSUBACK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/UNSUBACK.json -------------------------------------------------------------------------------- /test/broker/data/UNSUBSCRIBE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/UNSUBSCRIBE.json -------------------------------------------------------------------------------- /test/broker/data/ZZ-broker-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/data/ZZ-broker-check.json -------------------------------------------------------------------------------- /test/broker/dynamic-security-init.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/dynamic-security-init.json -------------------------------------------------------------------------------- /test/broker/mosq_test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/mosq_test_helper.py -------------------------------------------------------------------------------- /test/broker/msg_sequence_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/msg_sequence_test.py -------------------------------------------------------------------------------- /test/broker/prop_subpub_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/prop_subpub_helper.py -------------------------------------------------------------------------------- /test/broker/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/readme.txt -------------------------------------------------------------------------------- /test/broker/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/broker/test.py -------------------------------------------------------------------------------- /test/client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/client/Makefile -------------------------------------------------------------------------------- /test/client/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/client/test.sh -------------------------------------------------------------------------------- /test/lib/01-con-discon-success.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/01-con-discon-success.py -------------------------------------------------------------------------------- /test/lib/01-keepalive-pingreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/01-keepalive-pingreq.py -------------------------------------------------------------------------------- /test/lib/01-no-clean-session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/01-no-clean-session.py -------------------------------------------------------------------------------- /test/lib/01-server-keepalive-pingreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/01-server-keepalive-pingreq.py -------------------------------------------------------------------------------- /test/lib/01-unpwd-set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/01-unpwd-set.py -------------------------------------------------------------------------------- /test/lib/01-will-set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/01-will-set.py -------------------------------------------------------------------------------- /test/lib/01-will-unpwd-set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/01-will-unpwd-set.py -------------------------------------------------------------------------------- /test/lib/02-subscribe-qos0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/02-subscribe-qos0.py -------------------------------------------------------------------------------- /test/lib/02-subscribe-qos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/02-subscribe-qos1.py -------------------------------------------------------------------------------- /test/lib/02-subscribe-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/02-subscribe-qos2.py -------------------------------------------------------------------------------- /test/lib/02-unsubscribe-multiple-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/02-unsubscribe-multiple-v5.py -------------------------------------------------------------------------------- /test/lib/02-unsubscribe-v5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/02-unsubscribe-v5.py -------------------------------------------------------------------------------- /test/lib/02-unsubscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/02-unsubscribe.py -------------------------------------------------------------------------------- /test/lib/03-publish-b2c-qos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-b2c-qos1.py -------------------------------------------------------------------------------- /test/lib/03-publish-b2c-qos2-len.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-b2c-qos2-len.py -------------------------------------------------------------------------------- /test/lib/03-publish-b2c-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-b2c-qos2.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos1-disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos1-disconnect.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos1-len.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos1-len.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos1-timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos1-timeout.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos2-disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos2-disconnect.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos2-len.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos2-len.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos2-maximum-qos-0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos2-maximum-qos-0.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos2-maximum-qos-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos2-maximum-qos-1.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos2-pubrec-error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos2-pubrec-error.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos2-timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos2-timeout.py -------------------------------------------------------------------------------- /test/lib/03-publish-c2b-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-c2b-qos2.py -------------------------------------------------------------------------------- /test/lib/03-publish-qos0-no-payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-qos0-no-payload.py -------------------------------------------------------------------------------- /test/lib/03-publish-qos0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-publish-qos0.py -------------------------------------------------------------------------------- /test/lib/03-request-response-correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-request-response-correlation.py -------------------------------------------------------------------------------- /test/lib/03-request-response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/03-request-response.py -------------------------------------------------------------------------------- /test/lib/04-retain-qos0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/04-retain-qos0.py -------------------------------------------------------------------------------- /test/lib/08-ssl-bad-cacert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/08-ssl-bad-cacert.py -------------------------------------------------------------------------------- /test/lib/08-ssl-connect-cert-auth-enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/08-ssl-connect-cert-auth-enc.py -------------------------------------------------------------------------------- /test/lib/08-ssl-connect-cert-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/08-ssl-connect-cert-auth.py -------------------------------------------------------------------------------- /test/lib/08-ssl-connect-no-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/08-ssl-connect-no-auth.py -------------------------------------------------------------------------------- /test/lib/08-ssl-fake-cacert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/08-ssl-fake-cacert.py -------------------------------------------------------------------------------- /test/lib/09-util-topic-tokenise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/09-util-topic-tokenise.py -------------------------------------------------------------------------------- /test/lib/11-prop-oversize-packet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/11-prop-oversize-packet.py -------------------------------------------------------------------------------- /test/lib/11-prop-recv-qos0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/11-prop-recv-qos0.py -------------------------------------------------------------------------------- /test/lib/11-prop-recv-qos1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/11-prop-recv-qos1.py -------------------------------------------------------------------------------- /test/lib/11-prop-recv-qos2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/11-prop-recv-qos2.py -------------------------------------------------------------------------------- /test/lib/11-prop-send-content-type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/11-prop-send-content-type.py -------------------------------------------------------------------------------- /test/lib/11-prop-send-payload-format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/11-prop-send-payload-format.py -------------------------------------------------------------------------------- /test/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/Makefile -------------------------------------------------------------------------------- /test/lib/c/01-con-discon-success.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/01-con-discon-success.c -------------------------------------------------------------------------------- /test/lib/c/01-keepalive-pingreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/01-keepalive-pingreq.c -------------------------------------------------------------------------------- /test/lib/c/01-no-clean-session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/01-no-clean-session.c -------------------------------------------------------------------------------- /test/lib/c/01-server-keepalive-pingreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/01-server-keepalive-pingreq.c -------------------------------------------------------------------------------- /test/lib/c/01-unpwd-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/01-unpwd-set.c -------------------------------------------------------------------------------- /test/lib/c/01-will-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/01-will-set.c -------------------------------------------------------------------------------- /test/lib/c/01-will-unpwd-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/01-will-unpwd-set.c -------------------------------------------------------------------------------- /test/lib/c/02-subscribe-qos0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/02-subscribe-qos0.c -------------------------------------------------------------------------------- /test/lib/c/02-subscribe-qos1-async1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/02-subscribe-qos1-async1.c -------------------------------------------------------------------------------- /test/lib/c/02-subscribe-qos1-async2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/02-subscribe-qos1-async2.c -------------------------------------------------------------------------------- /test/lib/c/02-subscribe-qos1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/02-subscribe-qos1.c -------------------------------------------------------------------------------- /test/lib/c/02-subscribe-qos2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/02-subscribe-qos2.c -------------------------------------------------------------------------------- /test/lib/c/02-unsubscribe-multiple-v5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/02-unsubscribe-multiple-v5.c -------------------------------------------------------------------------------- /test/lib/c/02-unsubscribe-v5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/02-unsubscribe-v5.c -------------------------------------------------------------------------------- /test/lib/c/02-unsubscribe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/02-unsubscribe.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-b2c-qos1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-b2c-qos1.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-b2c-qos2-len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-b2c-qos2-len.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-b2c-qos2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-b2c-qos2.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-c2b-qos1-disconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-c2b-qos1-disconnect.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-c2b-qos1-len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-c2b-qos1-len.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-c2b-qos2-disconnect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-c2b-qos2-disconnect.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-c2b-qos2-len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-c2b-qos2-len.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-c2b-qos2-pubrec-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-c2b-qos2-pubrec-error.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-c2b-qos2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-c2b-qos2.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-qos0-no-payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-qos0-no-payload.c -------------------------------------------------------------------------------- /test/lib/c/03-publish-qos0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-publish-qos0.c -------------------------------------------------------------------------------- /test/lib/c/03-request-response-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-request-response-1.c -------------------------------------------------------------------------------- /test/lib/c/03-request-response-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/03-request-response-2.c -------------------------------------------------------------------------------- /test/lib/c/04-retain-qos0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/04-retain-qos0.c -------------------------------------------------------------------------------- /test/lib/c/08-ssl-bad-cacert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/08-ssl-bad-cacert.c -------------------------------------------------------------------------------- /test/lib/c/08-ssl-connect-cert-auth-enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/08-ssl-connect-cert-auth-enc.c -------------------------------------------------------------------------------- /test/lib/c/08-ssl-connect-cert-auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/08-ssl-connect-cert-auth.c -------------------------------------------------------------------------------- /test/lib/c/08-ssl-connect-no-auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/08-ssl-connect-no-auth.c -------------------------------------------------------------------------------- /test/lib/c/08-ssl-fake-cacert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/08-ssl-fake-cacert.c -------------------------------------------------------------------------------- /test/lib/c/09-util-topic-tokenise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/09-util-topic-tokenise.c -------------------------------------------------------------------------------- /test/lib/c/11-prop-oversize-packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/11-prop-oversize-packet.c -------------------------------------------------------------------------------- /test/lib/c/11-prop-recv-qos0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/11-prop-recv-qos0.c -------------------------------------------------------------------------------- /test/lib/c/11-prop-recv-qos1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/11-prop-recv-qos1.c -------------------------------------------------------------------------------- /test/lib/c/11-prop-recv-qos2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/11-prop-recv-qos2.c -------------------------------------------------------------------------------- /test/lib/c/11-prop-send-content-type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/11-prop-send-content-type.c -------------------------------------------------------------------------------- /test/lib/c/11-prop-send-payload-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/11-prop-send-payload-format.c -------------------------------------------------------------------------------- /test/lib/c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/c/Makefile -------------------------------------------------------------------------------- /test/lib/cpp/01-con-discon-success.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/01-con-discon-success.cpp -------------------------------------------------------------------------------- /test/lib/cpp/01-keepalive-pingreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/01-keepalive-pingreq.cpp -------------------------------------------------------------------------------- /test/lib/cpp/01-no-clean-session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/01-no-clean-session.cpp -------------------------------------------------------------------------------- /test/lib/cpp/01-unpwd-set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/01-unpwd-set.cpp -------------------------------------------------------------------------------- /test/lib/cpp/01-will-set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/01-will-set.cpp -------------------------------------------------------------------------------- /test/lib/cpp/01-will-unpwd-set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/01-will-unpwd-set.cpp -------------------------------------------------------------------------------- /test/lib/cpp/02-subscribe-qos0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/02-subscribe-qos0.cpp -------------------------------------------------------------------------------- /test/lib/cpp/02-subscribe-qos1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/02-subscribe-qos1.cpp -------------------------------------------------------------------------------- /test/lib/cpp/02-subscribe-qos2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/02-subscribe-qos2.cpp -------------------------------------------------------------------------------- /test/lib/cpp/02-unsubscribe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/02-unsubscribe.cpp -------------------------------------------------------------------------------- /test/lib/cpp/03-publish-b2c-qos1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/03-publish-b2c-qos1.cpp -------------------------------------------------------------------------------- /test/lib/cpp/03-publish-b2c-qos2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/03-publish-b2c-qos2.cpp -------------------------------------------------------------------------------- /test/lib/cpp/03-publish-c2b-qos2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/03-publish-c2b-qos2.cpp -------------------------------------------------------------------------------- /test/lib/cpp/03-publish-qos0-no-payload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/03-publish-qos0-no-payload.cpp -------------------------------------------------------------------------------- /test/lib/cpp/03-publish-qos0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/03-publish-qos0.cpp -------------------------------------------------------------------------------- /test/lib/cpp/04-retain-qos0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/04-retain-qos0.cpp -------------------------------------------------------------------------------- /test/lib/cpp/08-ssl-bad-cacert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/08-ssl-bad-cacert.cpp -------------------------------------------------------------------------------- /test/lib/cpp/08-ssl-connect-cert-auth-enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/08-ssl-connect-cert-auth-enc.cpp -------------------------------------------------------------------------------- /test/lib/cpp/08-ssl-connect-cert-auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/08-ssl-connect-cert-auth.cpp -------------------------------------------------------------------------------- /test/lib/cpp/08-ssl-connect-no-auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/08-ssl-connect-no-auth.cpp -------------------------------------------------------------------------------- /test/lib/cpp/08-ssl-fake-cacert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/08-ssl-fake-cacert.cpp -------------------------------------------------------------------------------- /test/lib/cpp/09-util-topic-tokenise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/09-util-topic-tokenise.cpp -------------------------------------------------------------------------------- /test/lib/cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/cpp/Makefile -------------------------------------------------------------------------------- /test/lib/mosq_test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/mosq_test_helper.py -------------------------------------------------------------------------------- /test/lib/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/lib/test.py -------------------------------------------------------------------------------- /test/mosq_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/mosq_test.py -------------------------------------------------------------------------------- /test/mqtt5_opts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/mqtt5_opts.py -------------------------------------------------------------------------------- /test/mqtt5_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/mqtt5_props.py -------------------------------------------------------------------------------- /test/mqtt5_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/mqtt5_rc.py -------------------------------------------------------------------------------- /test/old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/old/Makefile -------------------------------------------------------------------------------- /test/old/msgsps_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/old/msgsps_common.h -------------------------------------------------------------------------------- /test/old/msgsps_pub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/old/msgsps_pub.c -------------------------------------------------------------------------------- /test/old/msgsps_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/old/msgsps_sub.c -------------------------------------------------------------------------------- /test/ptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ptest.py -------------------------------------------------------------------------------- /test/random/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/random/Makefile -------------------------------------------------------------------------------- /test/random/auth_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/random/auth_plugin.c -------------------------------------------------------------------------------- /test/random/pwfile: -------------------------------------------------------------------------------- 1 | test:$6$cBP7e6sUriMSh8yf$+Z3E9P1g+Hui8zDJA+XJpTHl6+0eym0MtWokmOY4j1svAR5RtjZoXB4OQuHYzrGrdp1e8gXoqcKlcP+1lmepmg== 2 | -------------------------------------------------------------------------------- /test/random/random.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/random/random.conf -------------------------------------------------------------------------------- /test/random/random_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/random/random_client.py -------------------------------------------------------------------------------- /test/random/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/random/test.py -------------------------------------------------------------------------------- /test/ssl/all-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/all-ca.crt -------------------------------------------------------------------------------- /test/ssl/client-encrypted.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/client-encrypted.crt -------------------------------------------------------------------------------- /test/ssl/client-encrypted.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/client-encrypted.key -------------------------------------------------------------------------------- /test/ssl/client-expired.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/client-expired.crt -------------------------------------------------------------------------------- /test/ssl/client-expired.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/client-expired.key -------------------------------------------------------------------------------- /test/ssl/client-revoked.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/client-revoked.crt -------------------------------------------------------------------------------- /test/ssl/client-revoked.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/client-revoked.key -------------------------------------------------------------------------------- /test/ssl/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/client.crt -------------------------------------------------------------------------------- /test/ssl/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/client.key -------------------------------------------------------------------------------- /test/ssl/crl-empty.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/crl-empty.pem -------------------------------------------------------------------------------- /test/ssl/crl.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/crl.pem -------------------------------------------------------------------------------- /test/ssl/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/gen.sh -------------------------------------------------------------------------------- /test/ssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/openssl.cnf -------------------------------------------------------------------------------- /test/ssl/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/readme.txt -------------------------------------------------------------------------------- /test/ssl/rootCA/crlnumber: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /test/ssl/rootCA/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /test/ssl/rootCA/serial: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /test/ssl/server-expired.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/server-expired.crt -------------------------------------------------------------------------------- /test/ssl/server-expired.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/server-expired.key -------------------------------------------------------------------------------- /test/ssl/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/server.crt -------------------------------------------------------------------------------- /test/ssl/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/server.key -------------------------------------------------------------------------------- /test/ssl/signingCA/crlnumber: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /test/ssl/signingCA/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /test/ssl/signingCA/serial: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /test/ssl/test-alt-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-alt-ca.crt -------------------------------------------------------------------------------- /test/ssl/test-alt-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-alt-ca.key -------------------------------------------------------------------------------- /test/ssl/test-bad-root-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-bad-root-ca.crt -------------------------------------------------------------------------------- /test/ssl/test-bad-root-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-bad-root-ca.key -------------------------------------------------------------------------------- /test/ssl/test-fake-root-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-fake-root-ca.crt -------------------------------------------------------------------------------- /test/ssl/test-fake-root-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-fake-root-ca.key -------------------------------------------------------------------------------- /test/ssl/test-root-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-root-ca.crt -------------------------------------------------------------------------------- /test/ssl/test-root-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-root-ca.key -------------------------------------------------------------------------------- /test/ssl/test-signing-ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-signing-ca.crt -------------------------------------------------------------------------------- /test/ssl/test-signing-ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/ssl/test-signing-ca.key -------------------------------------------------------------------------------- /test/unit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/Makefile -------------------------------------------------------------------------------- /test/unit/bridge_topic_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/bridge_topic_test.c -------------------------------------------------------------------------------- /test/unit/datatype_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/datatype_read.c -------------------------------------------------------------------------------- /test/unit/datatype_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/datatype_write.c -------------------------------------------------------------------------------- /test/unit/files/persist_read/corrupt-header-short.test-db: -------------------------------------------------------------------------------- 1 | corrupt 2 | -------------------------------------------------------------------------------- /test/unit/files/persist_read/empty.test-db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/files/persist_read/v3-cfg.test-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/files/persist_read/v3-cfg.test-db -------------------------------------------------------------------------------- /test/unit/files/persist_read/v3-sub.test-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/files/persist_read/v3-sub.test-db -------------------------------------------------------------------------------- /test/unit/files/persist_read/v4-cfg.test-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/files/persist_read/v4-cfg.test-db -------------------------------------------------------------------------------- /test/unit/files/persist_read/v6-cfg.test-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/files/persist_read/v6-cfg.test-db -------------------------------------------------------------------------------- /test/unit/files/persist_read/v6-sub.test-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/files/persist_read/v6-sub.test-db -------------------------------------------------------------------------------- /test/unit/files/persist_write/empty.test-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/files/persist_write/empty.test-db -------------------------------------------------------------------------------- /test/unit/files/persist_write/v4-full.test-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/files/persist_write/v4-full.test-db -------------------------------------------------------------------------------- /test/unit/misc_trim_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/misc_trim_test.c -------------------------------------------------------------------------------- /test/unit/persist_read_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/persist_read_stubs.c -------------------------------------------------------------------------------- /test/unit/persist_read_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/persist_read_test.c -------------------------------------------------------------------------------- /test/unit/persist_write_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/persist_write_stubs.c -------------------------------------------------------------------------------- /test/unit/persist_write_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/persist_write_test.c -------------------------------------------------------------------------------- /test/unit/property_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/property_add.c -------------------------------------------------------------------------------- /test/unit/property_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/property_read.c -------------------------------------------------------------------------------- /test/unit/property_user_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/property_user_read.c -------------------------------------------------------------------------------- /test/unit/property_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/property_write.c -------------------------------------------------------------------------------- /test/unit/publish_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/publish_test.c -------------------------------------------------------------------------------- /test/unit/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/stubs.c -------------------------------------------------------------------------------- /test/unit/subs_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/subs_stubs.c -------------------------------------------------------------------------------- /test/unit/subs_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/subs_test.c -------------------------------------------------------------------------------- /test/unit/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/test.c -------------------------------------------------------------------------------- /test/unit/tls_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/tls_stubs.c -------------------------------------------------------------------------------- /test/unit/tls_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/tls_test.c -------------------------------------------------------------------------------- /test/unit/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/utf8.c -------------------------------------------------------------------------------- /test/unit/util_topic_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/test/unit/util_topic_test.c -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/vcpkg.json -------------------------------------------------------------------------------- /www/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/README.md -------------------------------------------------------------------------------- /www/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/conf.py -------------------------------------------------------------------------------- /www/files/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/android-chrome-192x192.png -------------------------------------------------------------------------------- /www/files/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/android-chrome-512x512.png -------------------------------------------------------------------------------- /www/files/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/apple-touch-icon.png -------------------------------------------------------------------------------- /www/files/blog/uploads/2011/08/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/blog/uploads/2011/08/image.png -------------------------------------------------------------------------------- /www/files/blog/uploads/2012/08/IMAG0006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/blog/uploads/2012/08/IMAG0006.jpg -------------------------------------------------------------------------------- /www/files/blog/uploads/2016/05/stickers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/blog/uploads/2016/05/stickers.jpg -------------------------------------------------------------------------------- /www/files/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/favicon-16x16.png -------------------------------------------------------------------------------- /www/files/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/favicon-32x32.png -------------------------------------------------------------------------------- /www/files/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/favicon.ico -------------------------------------------------------------------------------- /www/files/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/favicon.svg -------------------------------------------------------------------------------- /www/files/images/eclipse_logo_colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/images/eclipse_logo_colour.png -------------------------------------------------------------------------------- /www/files/images/github-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/images/github-icon.jpg -------------------------------------------------------------------------------- /www/files/images/iot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/images/iot-logo.png -------------------------------------------------------------------------------- /www/files/images/mosquitto-logo-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/images/mosquitto-logo-47.png -------------------------------------------------------------------------------- /www/files/images/mosquitto-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/images/mosquitto-logo.png -------------------------------------------------------------------------------- /www/files/images/mosquitto-text-side-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/images/mosquitto-text-side-28.png -------------------------------------------------------------------------------- /www/files/images/mosquitto-text-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/images/mosquitto-text-side.png -------------------------------------------------------------------------------- /www/files/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/manifest.json -------------------------------------------------------------------------------- /www/files/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/mstile-144x144.png -------------------------------------------------------------------------------- /www/files/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/mstile-150x150.png -------------------------------------------------------------------------------- /www/files/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/mstile-310x150.png -------------------------------------------------------------------------------- /www/files/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/mstile-310x310.png -------------------------------------------------------------------------------- /www/files/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/mstile-70x70.png -------------------------------------------------------------------------------- /www/files/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/safari-pinned-tab.svg -------------------------------------------------------------------------------- /www/files/stickers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/stickers/index.html -------------------------------------------------------------------------------- /www/files/stickers/mosquitto-colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/stickers/mosquitto-colour.png -------------------------------------------------------------------------------- /www/files/stickers/mosquitto-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/files/stickers/mosquitto-mono.png -------------------------------------------------------------------------------- /www/man: -------------------------------------------------------------------------------- 1 | ../man -------------------------------------------------------------------------------- /www/pages/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/pages/documentation.md -------------------------------------------------------------------------------- /www/pages/documentation/dynamic-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/pages/documentation/dynamic-security.md -------------------------------------------------------------------------------- /www/pages/documentation/migrating-to-2-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/pages/documentation/migrating-to-2-0.md -------------------------------------------------------------------------------- /www/pages/documentation/using-the-snap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/pages/documentation/using-the-snap.md -------------------------------------------------------------------------------- /www/pages/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/pages/download.md -------------------------------------------------------------------------------- /www/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/pages/index.html -------------------------------------------------------------------------------- /www/pages/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/pages/roadmap.md -------------------------------------------------------------------------------- /www/pages/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/pages/security.md -------------------------------------------------------------------------------- /www/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | # Plugin modules go here. -------------------------------------------------------------------------------- /www/plugins/docbookmanpage/docbookmanpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/plugins/docbookmanpage/docbookmanpage.py -------------------------------------------------------------------------------- /www/plugins/docbookmanpage/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/plugins/docbookmanpage/html.xsl -------------------------------------------------------------------------------- /www/posts/2009/12/version-0-2-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2009/12/version-0-2-released.md -------------------------------------------------------------------------------- /www/posts/2009/12/version-0-3-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2009/12/version-0-3-released.md -------------------------------------------------------------------------------- /www/posts/2010/01/mailing-list-irc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/01/mailing-list-irc.md -------------------------------------------------------------------------------- /www/posts/2010/01/version-0-4-1-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/01/version-0-4-1-released.md -------------------------------------------------------------------------------- /www/posts/2010/01/version-0-4-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/01/version-0-4-released.md -------------------------------------------------------------------------------- /www/posts/2010/02/version-0-4-2-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/02/version-0-4-2-released.md -------------------------------------------------------------------------------- /www/posts/2010/03/google-powermeter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/03/google-powermeter.md -------------------------------------------------------------------------------- /www/posts/2010/03/upgrading-to-0-5-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/03/upgrading-to-0-5-1.md -------------------------------------------------------------------------------- /www/posts/2010/03/version-0-5-1-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/03/version-0-5-1-released.md -------------------------------------------------------------------------------- /www/posts/2010/03/version-0-5-2-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/03/version-0-5-2-released.md -------------------------------------------------------------------------------- /www/posts/2010/03/version-0-5-3-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/03/version-0-5-3-released.md -------------------------------------------------------------------------------- /www/posts/2010/03/version-0-5-4-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/03/version-0-5-4-released.md -------------------------------------------------------------------------------- /www/posts/2010/04/mind-control-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/04/mind-control-mqtt.md -------------------------------------------------------------------------------- /www/posts/2010/04/oggcamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/04/oggcamp.md -------------------------------------------------------------------------------- /www/posts/2010/05/gentoo-ebuilds-available.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/05/gentoo-ebuilds-available.md -------------------------------------------------------------------------------- /www/posts/2010/05/mosquitto-org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/05/mosquitto-org.md -------------------------------------------------------------------------------- /www/posts/2010/05/mqtt-push-on-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/05/mqtt-push-on-android.md -------------------------------------------------------------------------------- /www/posts/2010/05/mqtt-wiki.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/05/mqtt-wiki.md -------------------------------------------------------------------------------- /www/posts/2010/05/version-0-6-1-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/05/version-0-6-1-released.md -------------------------------------------------------------------------------- /www/posts/2010/05/version-0-6-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/05/version-0-6-released.md -------------------------------------------------------------------------------- /www/posts/2010/06/mosquitto-0-7rc1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/06/mosquitto-0-7rc1.md -------------------------------------------------------------------------------- /www/posts/2010/06/version-0-7-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/06/version-0-7-released.md -------------------------------------------------------------------------------- /www/posts/2010/07/mqtt-client-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/07/mqtt-client-library.md -------------------------------------------------------------------------------- /www/posts/2010/08/mqtt-v3-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/08/mqtt-v3-1.md -------------------------------------------------------------------------------- /www/posts/2010/08/version-0-8-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/08/version-0-8-2.md -------------------------------------------------------------------------------- /www/posts/2010/08/version-0-8-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/08/version-0-8-released.md -------------------------------------------------------------------------------- /www/posts/2010/09/debian-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/09/debian-packages.md -------------------------------------------------------------------------------- /www/posts/2010/09/mqtt-with-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/09/mqtt-with-php.md -------------------------------------------------------------------------------- /www/posts/2010/10/man-page-translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/10/man-page-translations.md -------------------------------------------------------------------------------- /www/posts/2010/10/one-year-old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/10/one-year-old.md -------------------------------------------------------------------------------- /www/posts/2010/11/distro-packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/11/distro-packaging.md -------------------------------------------------------------------------------- /www/posts/2010/11/mosquitto-0-9test2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/11/mosquitto-0-9test2.md -------------------------------------------------------------------------------- /www/posts/2010/11/version-0-9-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2010/11/version-0-9-released.md -------------------------------------------------------------------------------- /www/posts/2011/01/mqtt-news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/01/mqtt-news.md -------------------------------------------------------------------------------- /www/posts/2011/02/mosquitto-on-maemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/02/mosquitto-on-maemo.md -------------------------------------------------------------------------------- /www/posts/2011/02/mqtt-on-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/02/mqtt-on-android.md -------------------------------------------------------------------------------- /www/posts/2011/03/api-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/03/api-documentation.md -------------------------------------------------------------------------------- /www/posts/2011/04/version-0-10-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/04/version-0-10-released.md -------------------------------------------------------------------------------- /www/posts/2011/05/mqtt-ontology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/05/mqtt-ontology.md -------------------------------------------------------------------------------- /www/posts/2011/06/version-0-11-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/06/version-0-11-released.md -------------------------------------------------------------------------------- /www/posts/2011/07/lua-mqtt-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/07/lua-mqtt-client.md -------------------------------------------------------------------------------- /www/posts/2011/07/mosquitto-on-qnx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/07/mosquitto-on-qnx.md -------------------------------------------------------------------------------- /www/posts/2011/07/version-0-12-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/07/version-0-12-released.md -------------------------------------------------------------------------------- /www/posts/2011/08/arch-linux-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/08/arch-linux-package.md -------------------------------------------------------------------------------- /www/posts/2011/08/facebook-using-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/08/facebook-using-mqtt.md -------------------------------------------------------------------------------- /www/posts/2011/08/mosquitto-on-openwrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/08/mosquitto-on-openwrt.md -------------------------------------------------------------------------------- /www/posts/2011/08/mqtt-standardisation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/08/mqtt-standardisation.md -------------------------------------------------------------------------------- /www/posts/2011/09/version-0-13-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/09/version-0-13-released.md -------------------------------------------------------------------------------- /www/posts/2011/10/two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/10/two.md -------------------------------------------------------------------------------- /www/posts/2011/11/version-0-14-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/11/version-0-14-released.md -------------------------------------------------------------------------------- /www/posts/2011/12/mqtt-on-nanode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2011/12/mqtt-on-nanode.md -------------------------------------------------------------------------------- /www/posts/2012/01/do-you-use-mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/01/do-you-use-mqtt.md -------------------------------------------------------------------------------- /www/posts/2012/01/mosquitto-test-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/01/mosquitto-test-server.md -------------------------------------------------------------------------------- /www/posts/2012/02/mqtt2pachube.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/02/mqtt2pachube.md -------------------------------------------------------------------------------- /www/posts/2012/02/version-0-15-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/02/version-0-15-released.md -------------------------------------------------------------------------------- /www/posts/2012/06/ipv6-on-test-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/06/ipv6-on-test-server.md -------------------------------------------------------------------------------- /www/posts/2012/07/upcoming-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/07/upcoming-release.md -------------------------------------------------------------------------------- /www/posts/2012/08/baby.attachments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/08/baby.attachments.json -------------------------------------------------------------------------------- /www/posts/2012/08/baby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/08/baby.md -------------------------------------------------------------------------------- /www/posts/2012/08/bugfix-coming-soon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/08/bugfix-coming-soon.md -------------------------------------------------------------------------------- /www/posts/2012/08/version-1-0-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/08/version-1-0-released.md -------------------------------------------------------------------------------- /www/posts/2012/12/version-1-1-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2012/12/version-1-1-released.md -------------------------------------------------------------------------------- /www/posts/2013/08/mosquitto-on-fedora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2013/08/mosquitto-on-fedora.md -------------------------------------------------------------------------------- /www/posts/2013/08/mqtt-watchdir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2013/08/mqtt-watchdir.md -------------------------------------------------------------------------------- /www/posts/2013/08/version-1-2-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2013/08/version-1-2-released.md -------------------------------------------------------------------------------- /www/posts/2014/03/version-1-3-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2014/03/version-1-3-released.md -------------------------------------------------------------------------------- /www/posts/2014/05/new-arrival.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2014/05/new-arrival.md -------------------------------------------------------------------------------- /www/posts/2014/10/mosquitto-and-poodle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2014/10/mosquitto-and-poodle.md -------------------------------------------------------------------------------- /www/posts/2015/01/seeking-sponsorship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2015/01/seeking-sponsorship.md -------------------------------------------------------------------------------- /www/posts/2015/02/version-1-4-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2015/02/version-1-4-released.md -------------------------------------------------------------------------------- /www/posts/2016/01/test6-mosquitto-org.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2016/01/test6-mosquitto-org.md -------------------------------------------------------------------------------- /www/posts/2016/03/logo-contest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2016/03/logo-contest.md -------------------------------------------------------------------------------- /www/posts/2016/05/stickers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2016/05/stickers.md -------------------------------------------------------------------------------- /www/posts/2016/12/pre-christmas-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2016/12/pre-christmas-update.md -------------------------------------------------------------------------------- /www/posts/2017/03/for-the-final-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2017/03/for-the-final-time.md -------------------------------------------------------------------------------- /www/posts/2018/05/press-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2018/05/press-release.md -------------------------------------------------------------------------------- /www/posts/2018/05/version-1-5-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2018/05/version-1-5-released.md -------------------------------------------------------------------------------- /www/posts/2018/08/version-151-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2018/08/version-151-released.md -------------------------------------------------------------------------------- /www/posts/2018/09/version-152-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2018/09/version-152-released.md -------------------------------------------------------------------------------- /www/posts/2018/11/mqtt5-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2018/11/mqtt5-progress.md -------------------------------------------------------------------------------- /www/posts/2018/11/version-154-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2018/11/version-154-released.md -------------------------------------------------------------------------------- /www/posts/2018/12/version-155-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2018/12/version-155-released.md -------------------------------------------------------------------------------- /www/posts/2019/02/mqtt5-test-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2019/02/mqtt5-test-release.md -------------------------------------------------------------------------------- /www/posts/2019/04/version-1-6-released.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/posts/2019/04/version-1-6-released.md -------------------------------------------------------------------------------- /www/templates/book.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/templates/book.tmpl -------------------------------------------------------------------------------- /www/themes/mosquitto/assets/css/bulma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/themes/mosquitto/assets/css/bulma.css -------------------------------------------------------------------------------- /www/themes/mosquitto/assets/css/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/themes/mosquitto/assets/css/local.css -------------------------------------------------------------------------------- /www/themes/mosquitto/assets/css/man.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/themes/mosquitto/assets/css/man.css -------------------------------------------------------------------------------- /www/themes/mosquitto/engine: -------------------------------------------------------------------------------- 1 | mako 2 | -------------------------------------------------------------------------------- /www/themes/mosquitto/parent: -------------------------------------------------------------------------------- 1 | base 2 | -------------------------------------------------------------------------------- /www/themes/mosquitto/templates/base.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/themes/mosquitto/templates/base.tmpl -------------------------------------------------------------------------------- /www/themes/mosquitto/templates/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/themes/mosquitto/templates/index.tmpl -------------------------------------------------------------------------------- /www/themes/mosquitto/templates/post.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/themes/mosquitto/templates/post.tmpl -------------------------------------------------------------------------------- /www/themes/mosquitto/templates/story.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-mosquitto/mosquitto/HEAD/www/themes/mosquitto/templates/story.tmpl --------------------------------------------------------------------------------