| 213 | } |
| 214 | |
| 215 | IConnectionPtr LoopbackBuffer::GetNewConnection() |
| 216 | { |
| 217 | if( state_ == State::WaitingForConnection ) |
| 218 | { |
| 219 | state_= State::Connected; |
| 220 | return server_side_connection_; |
| 221 | } |
| 222 | |
| 223 | return nullptr; |
| 224 | } |
| 225 | |
| 226 | } // namespace PanzerChasm |
nothing calls this directly
no outgoing calls
no test coverage detected