| 37 | using proton::error_condition; |
| 38 | |
| 39 | static inline string configure(connection_options& opts, const string& config) { |
| 40 | istringstream is(config); |
| 41 | return connect_config::parse(is, opts); |
| 42 | } |
| 43 | |
| 44 | // Extra classes to resolve clash of on_error in both messaging_handler and listen_handler |
| 45 | class messaging_handler : public proton::messaging_handler { |
no test coverage detected