| 426 | } |
| 427 | |
| 428 | bool ConnectionWithSameConfigPointExists(const EipUint32 config_point) { |
| 429 | DoublyLinkedListNode *node = connection_list.first; |
| 430 | |
| 431 | while (NULL != node) { |
| 432 | CipConnectionObject *connection = node->data; |
| 433 | OPENER_ASSERT(NULL != connection) |
| 434 | if (config_point == connection->configuration_path.instance_id) { |
| 435 | return true; |
| 436 | } |
| 437 | node = node->next; |
| 438 | } |
| 439 | return false; |
| 440 | } |
| 441 | |
| 442 | void InitializeIoConnectionData(void) { |
| 443 | memset( g_exlusive_owner_connections, 0, |