[PATCH] Mac OS X: Fix wired IEEE 802.1x

Masashi Honma honma at ictec.co.jp
Wed Sep 23 20:33:55 EDT 2009


Hello.

This is a patch for Mac OS X wired IEEE 802.1x.

diff --git a/src/drivers/driver_wired.c b/src/drivers/driver_wired.c
index 2fd4645..2eed51f 100644
--- a/src/drivers/driver_wired.c
+++ b/src/drivers/driver_wired.c
@@ -474,7 +474,7 @@ static int wpa_driver_wired_multi(const char *ifname, const u8 *addr, int add)
 		os_memcpy(LLADDR(dlp), addr, ETH_ALEN);
 	}
 #endif /* __FreeBSD__ */
-#if defined(__NetBSD__) || defined(__OpenBSD__)
+#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__APPLE__)
 	{
 		struct sockaddr *sap;
 		sap = (struct sockaddr *) &ifr.ifr_addr;
@@ -482,7 +482,7 @@ static int wpa_driver_wired_multi(const char *ifname, const u8 *addr, int add)
 		sap->sa_family = AF_UNSPEC;
 		os_memcpy(sap->sa_data, addr, ETH_ALEN);
 	}
-#endif /* defined(__NetBSD__) || defined(__OpenBSD__) */
+#endif /* defined(__NetBSD__) || defined(__OpenBSD__) || defined(__APPLE__) */
 
 	if (ioctl(s, add ? SIOCADDMULTI : SIOCDELMULTI, (caddr_t) &ifr) < 0) {
 		perror("ioctl[SIOC{ADD/DEL}MULTI]");


I have tested with these.
OS : Mac OS X 10.5.6
EAP : EAP-TLS
Switch : Cisco Catalyst 2950

Regards,
Masashi Honma.


More information about the HostAP mailing list