def get_arp_op(self, buff): ether_packet = scapy.Ether(buff) arp_packet = ether_packet[scapy.ARP] return constants.ARP_OP_TYPE[arp_packet.op]