diff --git a/src/platform/nm-platform.h b/src/platform/nm-platform.h index 88cedeffa..a5cca8ba7 100644 --- a/src/platform/nm-platform.h +++ b/src/platform/nm-platform.h @@ -96,6 +96,11 @@ typedef struct { guint8 addr_ptr[1]; in_addr_t addr4; struct in6_addr addr6; + + /* NMIPAddr is really a union for IP addresses. + * However, as ethernet addresses fit in here nicely, ruse + * it also for an ethernet MAC address. */ + guint8 addr_eth[6 /*ETH_ALEN*/]; }; } NMIPAddr;