| 166 | } |
| 167 | |
| 168 | void SetPathPortSegmentPortIdentifier(const unsigned int port_identifier, |
| 169 | unsigned char *const cip_path) { |
| 170 | /* OPENER_ASSERT( |
| 171 | port_identifier < 16, |
| 172 | "Port identifier too large for standard port identifier field\n"); */ |
| 173 | OPENER_ASSERT(port_identifier < 16) |
| 174 | (*cip_path) |= port_identifier; |
| 175 | } |
| 176 | |
| 177 | unsigned int GetPathPortSegmentLinkAddressSize( |
| 178 | const unsigned char *const cip_path) { |
no outgoing calls