| 277 | |
| 278 | loop choose { |
| 279 | when(Reference<IConnection> conn = wait(listener->accept())) { |
| 280 | Reference<BufferedConnection> bc(new BufferedConnection(conn)); |
| 281 | connections.add(extServerConnection(docLayer, bc, nextConnectionId)); |
| 282 | nextConnectionId++; |
| 283 | } |
| 284 | when(wait(connections.getResult())) { ASSERT(false); } |
| 285 | } |
| 286 | } catch (Error& e) { |
no test coverage detected