| 180 | } |
| 181 | |
| 182 | void EraseFromActive(TConnection* connection) { |
| 183 | if (connection->Inactivated == false) { |
| 184 | connection->Unlink(); |
| 185 | } |
| 186 | connection->Inactivated = true; |
| 187 | } |
| 188 | |
| 189 | void InsertToSending(TConnection* connection) { |
| 190 | Y_ABORT_UNLESS(connection, "null connection inserted\n"); |
no test coverage detected