| 745 | } |
| 746 | |
| 747 | void CArpSchemeSelector::ModifyArpScheme(int idx) { |
| 748 | if (auto pSeq = parent_.GetSequence()) { |
| 749 | auto ItemValue = static_cast<uint8_t>(pSeq->GetItem(idx) & 0x3F) | static_cast<uint8_t>(value_cast(next_scheme_)); |
| 750 | pSeq->SetItem(idx, ItemValue); |
| 751 | parent_.ItemModified(); // // // |
| 752 | } |
| 753 | } |
| 754 | |
| 755 | arp_scheme_mode_t CArpSchemeSelector::GetNextScheme(arp_scheme_mode_t scheme, bool fwd) { |
| 756 | switch (scheme) { |
nothing calls this directly
no test coverage detected