| 32 | } |
| 33 | |
| 34 | MAC_Address EthernetFrameEditor::GetSourceMAC() const |
| 35 | { |
| 36 | return *(MAC_Address*)&basePkt->buffer[6]; |
| 37 | } |
| 38 | void EthernetFrameEditor::SetSourceMAC(MAC_Address value) |
| 39 | { |
| 40 | *(MAC_Address*)&basePkt->buffer[6] = value; |
no outgoing calls
no test coverage detected