Crate oui_data

Source
Expand description

OUI database, generated from IEEE CSV files.

Use the lookup function to lookup a MAC address in the MA-L, MA-M, MA-S, CID, and IAB registries.

let record = oui::lookup("00:00:00:00:00:00").unwrap();
assert_eq!(record.organization(), "XEROX CORPORATION");

Structs§

OuiData
A record from the OUI database.

Enums§

Registry
The registry for an OUI record.

Statics§

OUI_ENTRIES
Raw database of OUI records.

Functions§

lookup
Retrieve the OUI record for a given MAC address.