| 73 | } |
| 74 | |
| 75 | void connection_driver::connect(const connection_options& opts) { |
| 76 | connection_options all; |
| 77 | all.container_id(container_id_); |
| 78 | all.update(opts); |
| 79 | configure(all, false); |
| 80 | connection().open(); |
| 81 | } |
| 82 | |
| 83 | void connection_driver::accept(const connection_options& opts) { |
| 84 | connection_options all; |
nothing calls this directly
no test coverage detected