| 2982 | #undef mix |
| 2983 | |
| 2984 | static int |
| 2985 | bridge_rtnode_addr_cmp(const uint8_t *a, const uint8_t *b) |
| 2986 | { |
| 2987 | int i, d; |
| 2988 | |
| 2989 | for (i = 0, d = 0; i < ETHER_ADDR_LEN && d == 0; i++) { |
| 2990 | d = ((int)a[i]) - ((int)b[i]); |
| 2991 | } |
| 2992 | |
| 2993 | return (d); |
| 2994 | } |
| 2995 | |
| 2996 | /* |
| 2997 | * bridge_rtnode_lookup: |
no outgoing calls
no test coverage detected