Not exactly actual hardware addresses, but SNAP protocol uses OUI as the first part, so if I ever had to write code that needs to wor with SNAP, I could totally see myself doing something like this:
class SNAPAddress(macaddress.HWAddress):
size = 40
formats = ...
And then maybe doing stuff like OUI(my_snap_address) (assuming #8), etc.
Anyway, nothing to do for now, just jotting it down as another example of almost-hardware-address things which this library could be useful for.
Not exactly actual hardware addresses, but
SNAPprotocol uses OUI as the first part, so if I ever had to write code that needs to wor withSNAP, I could totally see myself doing something like this:And then maybe doing stuff like
OUI(my_snap_address)(assuming #8), etc.Anyway, nothing to do for now, just jotting it down as another example of almost-hardware-address things which this library could be useful for.