(byte[] mac)
| 979 | } |
| 980 | |
| 981 | public static String getMacVendor(byte[] mac){ |
| 982 | if(mac != null && mVendors != null && mac.length >= 3) |
| 983 | return mVendors.get(NetworkHelper.getOUICode(mac)); |
| 984 | else |
| 985 | return null; |
| 986 | } |
| 987 | |
| 988 | public static String getProtocolByPort(String port){ |
| 989 |
no test coverage detected