| 45 | namespace { |
| 46 | |
| 47 | std::string make_url(std::string host, int port) { |
| 48 | std::ostringstream url; |
| 49 | url << "//" << host << ":" << port; |
| 50 | return url.str(); |
| 51 | } |
| 52 | |
| 53 | struct test_listen_handler : public proton::listen_handler { |
| 54 | bool on_open_, on_accept_, on_close_; |
no test coverage detected