Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/+oui-regex.housekeeping
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update the regex for OUI data file gathering.
2 changes: 1 addition & 1 deletion flat_postprocess/oui_postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import subprocess
import sys

HEX_RE = r"^(?P<hex>[0-9A-Fa-f]{6})\s*\(base 16\)\s+(?P<company>.+?)\s*$"
HEX_RE = r"^MA-L,(?P<hex>[0-9A-Fa-f]{6}),\"(?P<company>[^\"]+)\",.*$"

OUI_MAPPINGS = {}
URL = "https://standards-oui.ieee.org/oui/oui.txt"
Expand Down
Loading