Hello, I am using qpid-proton-0.14.0 C++ client in an embedded environment (ARM device). I am connecting to AMQP broker, and sending/receiving messages without problem. I have one more requirement: When I am not able to send message because of network problems, I should send those messages later. To simulate this, after successfully connecting and starting to send/receive messages, I REMOVE ethernet network cable from device. However, neither of these overridden proton::messaging_handler functions are called: on_transport_error, on_transport_close, on_connection_close, on_connection_error, on_sender_close, on_sender_error, on_sender_detach, on_receiver_close, on_receiver_error, on_receiver_detach, on_error
As a result, I am not able to detect network problems. How could I do it?Thanks in advance.
