| 1404 | |
| 1405 | |
| 1406 | void AddNewActiveConnection(const CipConnectionObject *const connection_object) |
| 1407 | { |
| 1408 | DoublyLinkedListInsertAtHead(&connection_list, connection_object); |
| 1409 | ConnectionObjectSetState(connection_object, |
| 1410 | kConnectionObjectStateEstablished); |
| 1411 | } |
| 1412 | |
| 1413 | void RemoveFromActiveConnections(CipConnectionObject *const connection_object) { |
| 1414 | for(DoublyLinkedListNode *iterator = connection_list.first; iterator != NULL; |
no test coverage detected