From 5d04e20a01bbeb6ef80daa61d9d9c37814b7def4 Mon Sep 17 00:00:00 2001 From: Tim Blechmann Date: Tue, 21 Sep 2021 20:13:31 +0800 Subject: [PATCH 1/2] relicense: add relicense statement for tim blechmann --- RELICENSE/timblechmann.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 RELICENSE/timblechmann.md diff --git a/RELICENSE/timblechmann.md b/RELICENSE/timblechmann.md new file mode 100644 index 00000000..df13dbda --- /dev/null +++ b/RELICENSE/timblechmann.md @@ -0,0 +1,16 @@ +# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL + +This is a statement by Tim Blechmann that grants permission to +relicense its copyrights in the libzmq C++ library (ZeroMQ) under the +Mozilla Public License v2 (MPLv2) or any other Open Source Initiative +approved license chosen by the current ZeroMQ BDFL (Benevolent +Dictator for Life). + +A portion of the commits made by the Github handle "timblechmann", with +commit author "Tim Blechmann ", are +copyright of Tim Blechmann. This document hereby grants the libzmq +project team to relicense libzmq, including all past, present and +future contributions of the author listed above. + +Tim Blechmann +2021/09/21 From 51e97c548081a1171be0081d91883945155d5fc6 Mon Sep 17 00:00:00 2001 From: Tim Blechmann Date: Tue, 21 Sep 2021 11:20:38 +0800 Subject: [PATCH 2/2] add missing override statements --- src/session_base.hpp | 2 +- src/stream_engine_base.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/session_base.hpp b/src/session_base.hpp index c2e6d098..e96e0533 100644 --- a/src/session_base.hpp +++ b/src/session_base.hpp @@ -113,7 +113,7 @@ class session_base_t : public own_t, public io_object_t, public i_pipe_events void process_plug () ZMQ_FINAL; void process_attach (zmq::i_engine *engine_) ZMQ_FINAL; void process_term (int linger_) ZMQ_FINAL; - void process_conn_failed (); + void process_conn_failed () ZMQ_OVERRIDE; // i_poll_events handlers. void timer_event (int id_) ZMQ_FINAL; diff --git a/src/stream_engine_base.hpp b/src/stream_engine_base.hpp index 58bf9579..05bcc659 100644 --- a/src/stream_engine_base.hpp +++ b/src/stream_engine_base.hpp @@ -73,7 +73,7 @@ class stream_engine_base_t : public io_object_t, public i_engine // i_poll_events interface implementation. void in_event () ZMQ_FINAL; - void out_event (); + void out_event () ZMQ_OVERRIDE; void timer_event (int id_) ZMQ_FINAL; protected: