| 1938 | } |
| 1939 | |
| 1940 | void FlowTransport::resetConnection(NetworkAddress address) { |
| 1941 | auto peer = self->getPeer(address); |
| 1942 | if (peer) { |
| 1943 | peer->resetConnection.trigger(); |
| 1944 | } |
| 1945 | } |
| 1946 | |
| 1947 | bool FlowTransport::incompatibleOutgoingConnectionsPresent() { |
| 1948 | return self->numIncompatibleConnections > 0; |
no test coverage detected