| 545 | static const int vxlan_control_table_size = nitems(vxlan_control_table); |
| 546 | |
| 547 | static int |
| 548 | vxlan_ftable_addr_cmp(const uint8_t *a, const uint8_t *b) |
| 549 | { |
| 550 | int i, d; |
| 551 | |
| 552 | for (i = 0, d = 0; i < ETHER_ADDR_LEN && d == 0; i++) |
| 553 | d = ((int)a[i]) - ((int)b[i]); |
| 554 | |
| 555 | return (d); |
| 556 | } |
| 557 | |
| 558 | static void |
| 559 | vxlan_ftable_init(struct vxlan_softc *sc) |
no outgoing calls
no test coverage detected