| 81 | } |
| 82 | |
| 83 | void connection_driver::accept(const connection_options& opts) { |
| 84 | connection_options all; |
| 85 | all.container_id(container_id_); |
| 86 | all.update(opts); |
| 87 | configure(all, true); |
| 88 | } |
| 89 | |
| 90 | bool connection_driver::has_events() const { |
| 91 | return driver_.collector && pn_collector_peek(driver_.collector); |
nothing calls this directly
no test coverage detected