Added the slightly borked nvidia with built in LAN.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@1408 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: MACUtil.java,v 1.9 2004/02/25 13:17:13 mdb Exp $
|
// $Id: MACUtil.java,v 1.10 2004/02/25 20:19:06 eric Exp $
|
||||||
|
|
||||||
package com.samskivert.net;
|
package com.samskivert.net;
|
||||||
|
|
||||||
@@ -55,14 +55,18 @@ public class MACUtil
|
|||||||
// ignore. And another, 00E006095566 is apparently the mac of
|
// ignore. And another, 00E006095566 is apparently the mac of
|
||||||
// some set of all in one ASUS motherboards. Guess they
|
// some set of all in one ASUS motherboards. Guess they
|
||||||
// didn't get the memo about the MACs all being unique.
|
// didn't get the memo about the MACs all being unique.
|
||||||
|
// Nvidia with built in LAN has a unique prob.
|
||||||
if (mac.startsWith("44-45-53") ||
|
if (mac.startsWith("44-45-53") ||
|
||||||
mac.startsWith("44:45:53")) {
|
mac.startsWith("44:45:53")) {
|
||||||
continue;
|
continue;
|
||||||
} else if (mac.startsWith("00-53-45-00") ||
|
} else if (mac.startsWith("00-53-45-00") ||
|
||||||
mac.startsWith("00:53:45:00")) {
|
mac.startsWith("00:53:45:00")) {
|
||||||
continue;
|
continue;
|
||||||
} else if (mac.startsWith("00-E0-06-09-55-66") ||
|
} else if (mac.startsWith("00-E0-06-09-55-66") ||
|
||||||
mac.startsWith("00:E0:06:09:55:66")) {
|
mac.startsWith("00:E0:06:09:55:66")) {
|
||||||
|
continue;
|
||||||
|
} else if (mac.startsWith("00-04-4B-80-80-03") ||
|
||||||
|
mac.startsWith("00:04:4B:80:80:03")) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user