From b0a065f790cd9b7821ccd35fe2711345c832af54 Mon Sep 17 00:00:00 2001 From: "Roger A. Light" Date: Thu, 27 Feb 2020 23:26:58 +0000 Subject: [PATCH] Update changelog. Release page. Bump copyright. --- ChangeLog.txt | 4 ++ client/client_props.c | 2 +- client/client_shared.c | 2 +- client/client_shared.h | 2 +- client/pub_client.c | 2 +- client/pub_shared.c | 2 +- client/pub_shared.h | 2 +- client/rr_client.c | 2 +- client/sub_client.c | 2 +- client/sub_client_output.c | 2 +- lib/actions.c | 2 +- lib/alias_mosq.c | 2 +- lib/alias_mosq.h | 2 +- lib/callbacks.c | 2 +- lib/connect.c | 2 +- lib/handle_auth.c | 2 +- lib/handle_connack.c | 2 +- lib/handle_disconnect.c | 2 +- lib/handle_ping.c | 2 +- lib/handle_pubackcomp.c | 2 +- lib/handle_publish.c | 2 +- lib/handle_pubrec.c | 2 +- lib/handle_pubrel.c | 2 +- lib/handle_suback.c | 2 +- lib/handle_unsuback.c | 2 +- lib/helpers.c | 2 +- lib/logging_mosq.c | 2 +- lib/logging_mosq.h | 2 +- lib/loop.c | 2 +- lib/memory_mosq.c | 2 +- lib/memory_mosq.h | 2 +- lib/messages_mosq.c | 2 +- lib/messages_mosq.h | 2 +- lib/misc_mosq.c | 2 +- lib/misc_mosq.h | 2 +- lib/mosquitto.c | 2 +- lib/mosquitto.h | 2 +- lib/mosquitto_internal.h | 2 +- lib/mqtt_protocol.h | 2 +- lib/net_mosq.c | 2 +- lib/net_mosq.h | 2 +- lib/net_mosq_ocsp.c | 2 +- lib/options.c | 2 +- lib/packet_datatypes.c | 2 +- lib/packet_mosq.c | 2 +- lib/packet_mosq.h | 2 +- lib/property_mosq.c | 2 +- lib/property_mosq.h | 2 +- lib/read_handle.c | 2 +- lib/read_handle.h | 2 +- lib/send_connect.c | 2 +- lib/send_disconnect.c | 2 +- lib/send_mosq.c | 2 +- lib/send_mosq.h | 2 +- lib/send_publish.c | 2 +- lib/send_subscribe.c | 2 +- lib/send_unsubscribe.c | 2 +- lib/socks_mosq.c | 2 +- lib/socks_mosq.h | 2 +- lib/srv_mosq.c | 2 +- lib/thread_mosq.c | 2 +- lib/time_mosq.c | 2 +- lib/time_mosq.h | 2 +- lib/tls_mosq.c | 2 +- lib/tls_mosq.h | 2 +- lib/utf8_mosq.c | 2 +- lib/util_mosq.c | 2 +- lib/util_mosq.h | 2 +- lib/util_topic.c | 2 +- lib/will_mosq.c | 2 +- lib/will_mosq.h | 2 +- src/bridge.c | 2 +- src/conf.c | 2 +- src/conf_includedir.c | 2 +- src/context.c | 2 +- src/database.c | 2 +- src/handle_auth.c | 2 +- src/handle_connack.c | 2 +- src/handle_connect.c | 2 +- src/handle_disconnect.c | 2 +- src/handle_publish.c | 2 +- src/handle_subscribe.c | 2 +- src/handle_unsubscribe.c | 2 +- src/lib_load.h | 2 +- src/logging.c | 2 +- src/loop.c | 2 +- src/mosquitto.c | 2 +- src/mosquitto_broker.h | 2 +- src/mosquitto_broker_internal.h | 2 +- src/mosquitto_passwd.c | 2 +- src/mosquitto_plugin.h | 2 +- src/net.c | 2 +- src/persist.h | 2 +- src/persist_read.c | 2 +- src/persist_read_v234.c | 2 +- src/persist_read_v5.c | 2 +- src/persist_write.c | 2 +- src/persist_write_v5.c | 2 +- src/plugin.c | 2 +- src/plugin_debug.c | 2 +- src/plugin_defer.c | 2 +- src/property_broker.c | 2 +- src/read_handle.c | 2 +- src/security.c | 2 +- src/security_default.c | 2 +- src/send_auth.c | 2 +- src/send_connack.c | 2 +- src/send_suback.c | 2 +- src/send_unsuback.c | 2 +- src/service.c | 2 +- src/session_expiry.c | 2 +- src/signals.c | 2 +- src/subs.c | 2 +- src/sys_tree.c | 2 +- src/sys_tree.h | 2 +- src/uhpa.h | 2 +- src/websockets.c | 2 +- src/will_delay.c | 2 +- www/pages/download.md | 2 +- www/posts/2020/02/version-1-6-9-released.md | 56 +++++++++++++++++++++ 120 files changed, 178 insertions(+), 118 deletions(-) create mode 100644 www/posts/2020/02/version-1-6-9-released.md diff --git a/ChangeLog.txt b/ChangeLog.txt index 74967b7b..0650ffc5 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,6 @@ +1.6.9 - 20200227 +================ + Broker: - Fix session expiry with very large expiry intervals. Closes #1525. - Check ACL patterns for validity when loading. Closes #1539. @@ -13,6 +16,7 @@ Broker: - Improve password file parsing in the broker and mosqitto_passwd. Closes #1584. - Print OpenSSL errors in more situations, like when loading certificates fails. Closes #1552. +- Fix `mosquitto_client_protocol() returning incorrect values. Client library: - Set minimum keepalive argument to `mosquitto_connect*()` to be 5 seconds. diff --git a/client/client_props.c b/client/client_props.c index 7415bc06..4d187425 100644 --- a/client/client_props.c +++ b/client/client_props.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2018 Roger Light +Copyright (c) 2018-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/client/client_shared.c b/client/client_shared.c index a4a0b883..8239b40b 100644 --- a/client/client_shared.c +++ b/client/client_shared.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2014-2019 Roger Light +Copyright (c) 2014-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/client/client_shared.h b/client/client_shared.h index d34ef430..772a053d 100644 --- a/client/client_shared.h +++ b/client/client_shared.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2014-2019 Roger Light +Copyright (c) 2014-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/client/pub_client.c b/client/pub_client.c index 993e8128..cb8f54c7 100644 --- a/client/pub_client.c +++ b/client/pub_client.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/client/pub_shared.c b/client/pub_shared.c index 65395f94..81996a4f 100644 --- a/client/pub_shared.c +++ b/client/pub_shared.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2018 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/client/pub_shared.h b/client/pub_shared.h index 13796821..fd2102a3 100644 --- a/client/pub_shared.h +++ b/client/pub_shared.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2018 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/client/rr_client.c b/client/rr_client.c index 9d5e9d1e..4e22fa3b 100644 --- a/client/rr_client.c +++ b/client/rr_client.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2018 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/client/sub_client.c b/client/sub_client.c index ca471a23..7eeaae59 100644 --- a/client/sub_client.c +++ b/client/sub_client.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/client/sub_client_output.c b/client/sub_client_output.c index a7cdefb2..5b639e95 100644 --- a/client/sub_client_output.c +++ b/client/sub_client_output.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/actions.c b/lib/actions.c index 99d03f29..2b6dc596 100644 --- a/lib/actions.c +++ b/lib/actions.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/alias_mosq.c b/lib/alias_mosq.c index 8057bb99..127cebac 100644 --- a/lib/alias_mosq.c +++ b/lib/alias_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2019 Roger Light +Copyright (c) 2019-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/alias_mosq.h b/lib/alias_mosq.h index f892dbf8..b290be4c 100644 --- a/lib/alias_mosq.h +++ b/lib/alias_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2019 Roger Light +Copyright (c) 2019-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/callbacks.c b/lib/callbacks.c index 17f5161b..94465028 100644 --- a/lib/callbacks.c +++ b/lib/callbacks.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/connect.c b/lib/connect.c index bf847430..ac15d2f8 100644 --- a/lib/connect.c +++ b/lib/connect.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_auth.c b/lib/handle_auth.c index 5b84d3de..fc6276e4 100644 --- a/lib/handle_auth.c +++ b/lib/handle_auth.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2018 Roger Light +Copyright (c) 2018-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_connack.c b/lib/handle_connack.c index 379da156..81c74668 100644 --- a/lib/handle_connack.c +++ b/lib/handle_connack.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_disconnect.c b/lib/handle_disconnect.c index 0ec1c8b3..6a6a771f 100644 --- a/lib/handle_disconnect.c +++ b/lib/handle_disconnect.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2018 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_ping.c b/lib/handle_ping.c index 8482336c..4daaee04 100644 --- a/lib/handle_ping.c +++ b/lib/handle_ping.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_pubackcomp.c b/lib/handle_pubackcomp.c index 5bf3d004..ef229c14 100644 --- a/lib/handle_pubackcomp.c +++ b/lib/handle_pubackcomp.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_publish.c b/lib/handle_publish.c index e06b3249..0783d33e 100644 --- a/lib/handle_publish.c +++ b/lib/handle_publish.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_pubrec.c b/lib/handle_pubrec.c index fda76f04..a5e579ba 100644 --- a/lib/handle_pubrec.c +++ b/lib/handle_pubrec.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_pubrel.c b/lib/handle_pubrel.c index e7a36292..b42bd63f 100644 --- a/lib/handle_pubrel.c +++ b/lib/handle_pubrel.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_suback.c b/lib/handle_suback.c index 0973e7f2..47a3e529 100644 --- a/lib/handle_suback.c +++ b/lib/handle_suback.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/handle_unsuback.c b/lib/handle_unsuback.c index 06f9c16d..611718b3 100644 --- a/lib/handle_unsuback.c +++ b/lib/handle_unsuback.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/helpers.c b/lib/helpers.c index eb5bdec9..930eb365 100644 --- a/lib/helpers.c +++ b/lib/helpers.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2016-2019 Roger Light +Copyright (c) 2016-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/logging_mosq.c b/lib/logging_mosq.c index eab63562..398139cb 100644 --- a/lib/logging_mosq.c +++ b/lib/logging_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/logging_mosq.h b/lib/logging_mosq.h index c3cc29d9..7738ce41 100644 --- a/lib/logging_mosq.h +++ b/lib/logging_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/loop.c b/lib/loop.c index ad9bc0f3..42e6ba4d 100644 --- a/lib/loop.c +++ b/lib/loop.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/memory_mosq.c b/lib/memory_mosq.c index a9b01e54..4d8c358f 100644 --- a/lib/memory_mosq.c +++ b/lib/memory_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/memory_mosq.h b/lib/memory_mosq.h index 63386a21..d1175c60 100644 --- a/lib/memory_mosq.h +++ b/lib/memory_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/messages_mosq.c b/lib/messages_mosq.c index 90262441..7b63b52c 100644 --- a/lib/messages_mosq.c +++ b/lib/messages_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/messages_mosq.h b/lib/messages_mosq.h index 1951bfc7..a567c55d 100644 --- a/lib/messages_mosq.h +++ b/lib/messages_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/misc_mosq.c b/lib/misc_mosq.c index d4d5510e..c12e45b3 100644 --- a/lib/misc_mosq.c +++ b/lib/misc_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/misc_mosq.h b/lib/misc_mosq.h index c18bbbd1..ffba91d5 100644 --- a/lib/misc_mosq.h +++ b/lib/misc_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/mosquitto.c b/lib/mosquitto.c index 39fcaa29..f9be81b7 100644 --- a/lib/mosquitto.c +++ b/lib/mosquitto.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/mosquitto.h b/lib/mosquitto.h index 33deff7c..a672422e 100644 --- a/lib/mosquitto.h +++ b/lib/mosquitto.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/mosquitto_internal.h b/lib/mosquitto_internal.h index de640144..5df0b491 100644 --- a/lib/mosquitto_internal.h +++ b/lib/mosquitto_internal.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/mqtt_protocol.h b/lib/mqtt_protocol.h index 6a8a411f..66055a9f 100644 --- a/lib/mqtt_protocol.h +++ b/lib/mqtt_protocol.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2018 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/net_mosq.c b/lib/net_mosq.c index a0d837b8..9012646b 100644 --- a/lib/net_mosq.c +++ b/lib/net_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/net_mosq.h b/lib/net_mosq.h index 2f26f9d8..3037d9e9 100644 --- a/lib/net_mosq.h +++ b/lib/net_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/net_mosq_ocsp.c b/lib/net_mosq_ocsp.c index 32f2a3e3..de7dab6a 100644 --- a/lib/net_mosq_ocsp.c +++ b/lib/net_mosq_ocsp.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2014 Roger Light +Copyright (c) 2009-2020 Roger Light Copyright (c) 2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG), Dr. Lars Voelker All rights reserved. This program and the accompanying materials diff --git a/lib/options.c b/lib/options.c index 57a48fbd..a971f450 100644 --- a/lib/options.c +++ b/lib/options.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/packet_datatypes.c b/lib/packet_datatypes.c index 335cb9f0..724f8f97 100644 --- a/lib/packet_datatypes.c +++ b/lib/packet_datatypes.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2018 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/packet_mosq.c b/lib/packet_mosq.c index f9c46b6b..c6c03d1b 100644 --- a/lib/packet_mosq.c +++ b/lib/packet_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/packet_mosq.h b/lib/packet_mosq.h index 01b7d148..8a6dba88 100644 --- a/lib/packet_mosq.h +++ b/lib/packet_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/property_mosq.c b/lib/property_mosq.c index f489136c..859e28b5 100644 --- a/lib/property_mosq.c +++ b/lib/property_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2018 Roger Light +Copyright (c) 2018-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/property_mosq.h b/lib/property_mosq.h index d965d8a3..6963118a 100644 --- a/lib/property_mosq.h +++ b/lib/property_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2018 Roger Light +Copyright (c) 2018-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/read_handle.c b/lib/read_handle.c index 19c0c35b..8885c738 100644 --- a/lib/read_handle.c +++ b/lib/read_handle.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/read_handle.h b/lib/read_handle.h index 2a6936d8..4300b93e 100644 --- a/lib/read_handle.h +++ b/lib/read_handle.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/send_connect.c b/lib/send_connect.c index e35e6332..2ad8fdfa 100644 --- a/lib/send_connect.c +++ b/lib/send_connect.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/send_disconnect.c b/lib/send_disconnect.c index 35989887..18f95b63 100644 --- a/lib/send_disconnect.c +++ b/lib/send_disconnect.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/send_mosq.c b/lib/send_mosq.c index 27bc1fda..5a244fff 100644 --- a/lib/send_mosq.c +++ b/lib/send_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/send_mosq.h b/lib/send_mosq.h index 4b76f2f9..b96d6100 100644 --- a/lib/send_mosq.h +++ b/lib/send_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/send_publish.c b/lib/send_publish.c index f07c539d..7f75c58e 100644 --- a/lib/send_publish.c +++ b/lib/send_publish.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/send_subscribe.c b/lib/send_subscribe.c index 1f2760f9..cc5db1b2 100644 --- a/lib/send_subscribe.c +++ b/lib/send_subscribe.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/send_unsubscribe.c b/lib/send_unsubscribe.c index e7317151..502ad091 100644 --- a/lib/send_unsubscribe.c +++ b/lib/send_unsubscribe.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/socks_mosq.c b/lib/socks_mosq.c index 2aa45df7..51d8fb73 100644 --- a/lib/socks_mosq.c +++ b/lib/socks_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2014-2019 Roger Light +Copyright (c) 2014-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/socks_mosq.h b/lib/socks_mosq.h index 27b3dc3f..ae752cef 100644 --- a/lib/socks_mosq.h +++ b/lib/socks_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2014-2019 Roger Light +Copyright (c) 2014-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/srv_mosq.c b/lib/srv_mosq.c index b05d257d..a73e82c6 100644 --- a/lib/srv_mosq.c +++ b/lib/srv_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2013-2019 Roger Light +Copyright (c) 2013-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/thread_mosq.c b/lib/thread_mosq.c index d92526b3..d32e26fa 100644 --- a/lib/thread_mosq.c +++ b/lib/thread_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2011-2019 Roger Light +Copyright (c) 2011-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/time_mosq.c b/lib/time_mosq.c index c66d9854..b6156a54 100644 --- a/lib/time_mosq.c +++ b/lib/time_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2013-2019 Roger Light +Copyright (c) 2013-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/time_mosq.h b/lib/time_mosq.h index 75758a82..a25db6f0 100644 --- a/lib/time_mosq.h +++ b/lib/time_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2013-2019 Roger Light +Copyright (c) 2013-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/tls_mosq.c b/lib/tls_mosq.c index c2f1204f..757941a1 100644 --- a/lib/tls_mosq.c +++ b/lib/tls_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2013-2019 Roger Light +Copyright (c) 2013-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/tls_mosq.h b/lib/tls_mosq.h index 5a1cda54..7dcb23de 100644 --- a/lib/tls_mosq.h +++ b/lib/tls_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2013-2019 Roger Light +Copyright (c) 2013-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/utf8_mosq.c b/lib/utf8_mosq.c index 875c1c7f..ca7de490 100644 --- a/lib/utf8_mosq.c +++ b/lib/utf8_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2016-2019 Roger Light +Copyright (c) 2016-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/util_mosq.c b/lib/util_mosq.c index cae69c53..c34c2b67 100644 --- a/lib/util_mosq.c +++ b/lib/util_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/util_mosq.h b/lib/util_mosq.h index 3d61ec17..d8d34cab 100644 --- a/lib/util_mosq.h +++ b/lib/util_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/util_topic.c b/lib/util_topic.c index ae279467..1cfa8d32 100644 --- a/lib/util_topic.c +++ b/lib/util_topic.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2018 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/will_mosq.c b/lib/will_mosq.c index f9f1f32a..97fa67d0 100644 --- a/lib/will_mosq.c +++ b/lib/will_mosq.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/lib/will_mosq.h b/lib/will_mosq.h index c96dad1a..27004834 100644 --- a/lib/will_mosq.h +++ b/lib/will_mosq.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/bridge.c b/src/bridge.c index b18e4135..c951c8c3 100644 --- a/src/bridge.c +++ b/src/bridge.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/conf.c b/src/conf.c index 316ae2e7..f4038422 100644 --- a/src/conf.c +++ b/src/conf.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/conf_includedir.c b/src/conf_includedir.c index bbbd65b7..b602f963 100644 --- a/src/conf_includedir.c +++ b/src/conf_includedir.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/context.c b/src/context.c index 9483ef0c..d1db7f68 100644 --- a/src/context.c +++ b/src/context.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/database.c b/src/database.c index 4d9488b2..a6c4ad2c 100644 --- a/src/database.c +++ b/src/database.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/handle_auth.c b/src/handle_auth.c index 64baacc9..b528e9bb 100644 --- a/src/handle_auth.c +++ b/src/handle_auth.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2018-2019 Roger Light +Copyright (c) 2018-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/handle_connack.c b/src/handle_connack.c index 77d98934..48b7ea03 100644 --- a/src/handle_connack.c +++ b/src/handle_connack.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/handle_connect.c b/src/handle_connect.c index 695ce2aa..4d8d6a27 100644 --- a/src/handle_connect.c +++ b/src/handle_connect.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/handle_disconnect.c b/src/handle_disconnect.c index eab7b689..44b356f1 100644 --- a/src/handle_disconnect.c +++ b/src/handle_disconnect.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/handle_publish.c b/src/handle_publish.c index 49aaf8b3..2504860d 100644 --- a/src/handle_publish.c +++ b/src/handle_publish.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/handle_subscribe.c b/src/handle_subscribe.c index 2f3eb305..2ebf8ae4 100644 --- a/src/handle_subscribe.c +++ b/src/handle_subscribe.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/handle_unsubscribe.c b/src/handle_unsubscribe.c index 22728f9f..9869b32a 100644 --- a/src/handle_unsubscribe.c +++ b/src/handle_unsubscribe.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/lib_load.h b/src/lib_load.h index 48c5fa5b..55ba669b 100644 --- a/src/lib_load.h +++ b/src/lib_load.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2012-2019 Roger Light +Copyright (c) 2012-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/logging.c b/src/logging.c index d290e6d6..a43ca22e 100644 --- a/src/logging.c +++ b/src/logging.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/loop.c b/src/loop.c index 05a1cf6f..36fa3114 100644 --- a/src/loop.c +++ b/src/loop.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/mosquitto.c b/src/mosquitto.c index acfdc724..43b0a203 100644 --- a/src/mosquitto.c +++ b/src/mosquitto.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/mosquitto_broker.h b/src/mosquitto_broker.h index f6f2cc86..c7512470 100644 --- a/src/mosquitto_broker.h +++ b/src/mosquitto_broker.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/mosquitto_broker_internal.h b/src/mosquitto_broker_internal.h index 9b59b205..1e0c42c6 100644 --- a/src/mosquitto_broker_internal.h +++ b/src/mosquitto_broker_internal.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/mosquitto_passwd.c b/src/mosquitto_passwd.c index 0a8f1900..155ef0af 100644 --- a/src/mosquitto_passwd.c +++ b/src/mosquitto_passwd.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2012-2019 Roger Light +Copyright (c) 2012-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/mosquitto_plugin.h b/src/mosquitto_plugin.h index eb18b6ce..99374bee 100644 --- a/src/mosquitto_plugin.h +++ b/src/mosquitto_plugin.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2012-2019 Roger Light +Copyright (c) 2012-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/net.c b/src/net.c index 94f50639..8a8e3445 100644 --- a/src/net.c +++ b/src/net.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/persist.h b/src/persist.h index db743424..b9bc3708 100644 --- a/src/persist.h +++ b/src/persist.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/persist_read.c b/src/persist_read.c index 73df4b6f..9e4b1816 100644 --- a/src/persist_read.c +++ b/src/persist_read.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2018 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/persist_read_v234.c b/src/persist_read_v234.c index c80f98f7..b0987282 100644 --- a/src/persist_read_v234.c +++ b/src/persist_read_v234.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2018 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/persist_read_v5.c b/src/persist_read_v5.c index 684f9e3d..e8bb5aed 100644 --- a/src/persist_read_v5.c +++ b/src/persist_read_v5.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2018 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/persist_write.c b/src/persist_write.c index f6c11d60..61f4a73d 100644 --- a/src/persist_write.c +++ b/src/persist_write.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2018 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/persist_write_v5.c b/src/persist_write_v5.c index 86563c61..ba960f09 100644 --- a/src/persist_write_v5.c +++ b/src/persist_write_v5.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2018 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/plugin.c b/src/plugin.c index f8703f7d..f1b01ed9 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2016-2019 Roger Light +Copyright (c) 2016-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/plugin_debug.c b/src/plugin_debug.c index 9913daf6..13162b87 100644 --- a/src/plugin_debug.c +++ b/src/plugin_debug.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2015-2019 Roger Light +Copyright (c) 2015-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/plugin_defer.c b/src/plugin_defer.c index 715cd3ba..4ef34d01 100644 --- a/src/plugin_defer.c +++ b/src/plugin_defer.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2015-2019 Roger Light +Copyright (c) 2015-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/property_broker.c b/src/property_broker.c index 8fddbda0..a2147d00 100644 --- a/src/property_broker.c +++ b/src/property_broker.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2018 Roger Light +Copyright (c) 2018-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/read_handle.c b/src/read_handle.c index 8b548b05..e74f53bd 100644 --- a/src/read_handle.c +++ b/src/read_handle.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/security.c b/src/security.c index 2ccd7370..eb37c88d 100644 --- a/src/security.c +++ b/src/security.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2011-2019 Roger Light +Copyright (c) 2011-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/security_default.c b/src/security_default.c index a876df6d..7cc10614 100644 --- a/src/security_default.c +++ b/src/security_default.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2011-2019 Roger Light +Copyright (c) 2011-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/send_auth.c b/src/send_auth.c index 8da559c7..e46d70e1 100644 --- a/src/send_auth.c +++ b/src/send_auth.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2019 Roger Light +Copyright (c) 2019-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/send_connack.c b/src/send_connack.c index 2a67d9ec..61897d6f 100644 --- a/src/send_connack.c +++ b/src/send_connack.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/send_suback.c b/src/send_suback.c index b9eeae67..4bc006cb 100644 --- a/src/send_suback.c +++ b/src/send_suback.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/send_unsuback.c b/src/send_unsuback.c index 9a310fac..b71a0c2e 100644 --- a/src/send_unsuback.c +++ b/src/send_unsuback.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2018 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/service.c b/src/service.c index ff6cf2fe..05bee0c5 100644 --- a/src/service.c +++ b/src/service.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2011-2019 Roger Light +Copyright (c) 2011-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/session_expiry.c b/src/session_expiry.c index afbe8f86..462cdab1 100644 --- a/src/session_expiry.c +++ b/src/session_expiry.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2019 Roger Light +Copyright (c) 2019-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/signals.c b/src/signals.c index 38ff68d5..d5f9c611 100644 --- a/src/signals.c +++ b/src/signals.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2016-2019 Roger Light +Copyright (c) 2016-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/subs.c b/src/subs.c index 57e0dddd..e3615787 100644 --- a/src/subs.c +++ b/src/subs.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2010-2019 Roger Light +Copyright (c) 2010-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/sys_tree.c b/src/sys_tree.c index 6ae9ce66..c7d746f5 100644 --- a/src/sys_tree.c +++ b/src/sys_tree.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2009-2019 Roger Light +Copyright (c) 2009-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/sys_tree.h b/src/sys_tree.h index 603d2f02..275fb0a2 100644 --- a/src/sys_tree.h +++ b/src/sys_tree.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2015-2019 Roger Light +Copyright (c) 2015-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/uhpa.h b/src/uhpa.h index cad4d2c1..20e8e9f6 100644 --- a/src/uhpa.h +++ b/src/uhpa.h @@ -1,5 +1,5 @@ /* -Copyright (c) 2015-2019 Roger Light +Copyright (c) 2015-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/src/websockets.c b/src/websockets.c index 8c03a08a..fd2330b0 100644 --- a/src/websockets.c +++ b/src/websockets.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2014-2019 Roger Light +Copyright (c) 2014-2020 Roger Light All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/src/will_delay.c b/src/will_delay.c index 8d2be08a..b50b5edd 100644 --- a/src/will_delay.c +++ b/src/will_delay.c @@ -1,5 +1,5 @@ /* -Copyright (c) 2019 Roger Light +Copyright (c) 2019-2020 Roger Light All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 diff --git a/www/pages/download.md b/www/pages/download.md index 46f5d5a3..66130412 100644 --- a/www/pages/download.md +++ b/www/pages/download.md @@ -11,7 +11,7 @@ # Source -* [mosquitto-1.6.8.tar.gz](https://mosquitto.org/files/source/mosquitto-1.6.8.tar.gz) (319kB) ([GPG signature](https://mosquitto.org/files/source/mosquitto-1.6.8.tar.gz.asc)) +* [mosquitto-1.6.9.tar.gz](https://mosquitto.org/files/source/mosquitto-1.6.9.tar.gz) (319kB) ([GPG signature](https://mosquitto.org/files/source/mosquitto-1.6.9.tar.gz.asc)) * [Git source code repository](https://github.com/eclipse/mosquitto) (github.com) Older downloads are available at [https://mosquitto.org/files/](../files/) diff --git a/www/posts/2020/02/version-1-6-9-released.md b/www/posts/2020/02/version-1-6-9-released.md new file mode 100644 index 00000000..c26d9d9b --- /dev/null +++ b/www/posts/2020/02/version-1-6-9-released.md @@ -0,0 +1,56 @@ + + +Mosquitto 1.6.9 has been released, this is a bugfix release. + +# Broker +- Fix session expiry with very large expiry intervals. Closes [#1525]. +- Check ACL patterns for validity when loading. Closes [#1539]. +- Use presence of password file as indicator for whether username checks + should take place, not whether usernames are defined in the password file. + Closes [#1545]. +- Strip whitespace from end of config file string options. Closes [#1566]. +- Satisfy valgrind when exiting on error due to not being able to open a + listening socket, by calling freeaddrinfo. Closes [#1565]. +- Fix `config->user` not being freed on exit. Closes [#1564]. +- Fix trailing whitespace not being trimmed on acl users. Closes [#1539]. +- Fix `bind_interface` not working for the default listener. Closes [#1533]. +- Improve password file parsing in the broker and `mosquitto_passwd`. Closes [#1584]. +- Print OpenSSL errors in more situations, like when loading certificates + fails. Closes [#1552]. +- Fix `mosquitto_client_protocol()` returning incorrect values. + +# Client library +- Set minimum keepalive argument to `mosquitto_connect*()` to be 5 seconds. + Closes [#1550]. +- Fix `mosquitto_topic_matches_sub()` not returning `MOSQ_ERR_INVAL` if the + topic contains a wildcard. Closes [#1589]. + +# Clients +- Fix `--remove-retained` not obeying the `-T` option for filtering out + topics. Closes [#1585]. +- Default behaviour for v5 clients using `-c` is now to use infinite length + sessions, as with v3 clients. Closes [#1546]. + +[#1525]: https://github.com/eclipse/mosquitto/issues/1525 +[#1533]: https://github.com/eclipse/mosquitto/issues/1533 +[#1539]: https://github.com/eclipse/mosquitto/issues/1539 +[#1539]: https://github.com/eclipse/mosquitto/issues/1539 +[#1545]: https://github.com/eclipse/mosquitto/issues/1545 +[#1546]: https://github.com/eclipse/mosquitto/issues/1546 +[#1550]: https://github.com/eclipse/mosquitto/issues/1550 +[#1552]: https://github.com/eclipse/mosquitto/issues/1552 +[#1564]: https://github.com/eclipse/mosquitto/issues/1564 +[#1565]: https://github.com/eclipse/mosquitto/issues/1565 +[#1566]: https://github.com/eclipse/mosquitto/issues/1566 +[#1584]: https://github.com/eclipse/mosquitto/issues/1584 +[#1585]: https://github.com/eclipse/mosquitto/issues/1585 +[#1589]: https://github.com/eclipse/mosquitto/issues/1589