| 347 | std::map<proton::symbol, proton::value> peer_sender_properties; |
| 348 | |
| 349 | link_test_handler(const proton::receiver_options &r_opts=proton::receiver_options(), |
| 350 | const proton::sender_options &s_opts=proton::sender_options()) |
| 351 | : had_receiver(false), |
| 352 | had_sender(false), |
| 353 | receiver_options(r_opts), |
| 354 | sender_options(s_opts) |
| 355 | {} |
| 356 | |
| 357 | void on_container_start(proton::container &c) override { |
| 358 | listener = c.listen("//:0", listen_handler); |
nothing calls this directly
no test coverage detected