| 359 | } |
| 360 | |
| 361 | void on_connection_open(proton::connection &c) override { |
| 362 | if (c.uninitialized()) { |
| 363 | proton::messaging_handler::on_connection_open(c); |
| 364 | c.open_receiver("", receiver_options); |
| 365 | c.open_sender("", sender_options); |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | |
| 370 | void check_close(proton::link &l) { |
nothing calls this directly
no test coverage detected