| 476 | } |
| 477 | |
| 478 | static void |
| 479 | lomac_copy(struct mac_lomac *source, struct mac_lomac *dest) |
| 480 | { |
| 481 | |
| 482 | if (source->ml_flags & MAC_LOMAC_FLAG_SINGLE) |
| 483 | lomac_copy_single(source, dest); |
| 484 | if (source->ml_flags & MAC_LOMAC_FLAG_AUX) |
| 485 | lomac_copy_auxsingle(source, dest); |
| 486 | if (source->ml_flags & MAC_LOMAC_FLAG_RANGE) |
| 487 | lomac_copy_range(source, dest); |
| 488 | } |
| 489 | |
| 490 | static int lomac_to_string(struct sbuf *sb, struct mac_lomac *ml); |
| 491 |
no test coverage detected