Source code for cybox.objects.arp_cache_object

# Copyright (c) 2015, The MITRE Corporation. All rights reserved.
# See LICENSE.txt for complete terms.

from mixbox import fields

import cybox
import cybox.bindings.arp_cache_object as arp_binding
from cybox.objects.address_object import Address
from cybox.objects.system_object import NetworkInterface
from cybox.common import ObjectProperties, String


[docs]class ARPCacheEntry(cybox.Entity): _binding = arp_binding _binding_class = arp_binding.ARPCacheEntryType _namespace = "http://cybox.mitre.org/objects#ARPCacheObject-1" ip_address = fields.TypedField("IP_Address", Address) physical_address = fields.TypedField("Physical_Address", String) type_ = fields.TypedField("Type", String) network_interface = fields.TypedField("Network_Interface", NetworkInterface)
[docs]class ARPCache(ObjectProperties): _binding = arp_binding _binding_class = arp_binding.ARPCacheObjectType _namespace = "http://cybox.mitre.org/objects#ARPCacheObject-1" _XSI_NS = "ARPCacheObj" _XSI_TYPE = "ARPCacheObjectType" arp_cache_entry = fields.TypedField("ARP_Cache_Entry", ARPCacheEntry, multiple=True)