| 172 | } |
| 173 | |
| 174 | void InsertToActive(TConnection* connection) { |
| 175 | Y_ABORT_UNLESS(connection, "null connection inserted\n"); |
| 176 | if (connection->Inactivated == true) { |
| 177 | ActiveConnectionList.PushBack(connection); |
| 178 | } |
| 179 | connection->Inactivated = false; |
| 180 | } |
| 181 | |
| 182 | void EraseFromActive(TConnection* connection) { |
| 183 | if (connection->Inactivated == false) { |
no test coverage detected