- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getMacAddress (0.08 sec)
-
src/main/java/jcifs/NetbiosAddress.java
* @return the MAC address as an array of six bytes * @throws UnknownHostException * if the host cannot be resolved to * determine the MAC address. */ byte[] getMacAddress ( CIFSContext tc ) throws UnknownHostException; /** * Returned the hex code associated with this name(e.g. 0x20 is for the file service) * * @return the name type */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
@Override public boolean isPermanent ( CIFSContext tc ) throws UnknownHostException { checkNodeStatusData(tc); return this.isPermanent; } @Override public byte[] getMacAddress ( CIFSContext tc ) throws UnknownHostException { checkNodeStatusData(tc); return this.macAddress; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 15.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
* * @return the MAC address as an array of six bytes * @throws UnknownHostException if the host cannot be resolved to * determine the MAC address. */ public byte[] getMacAddress() throws UnknownHostException { checkNodeStatusData(); return macAddress; } /** * The hostname of this address. If the hostname is null the local machines * IP address is returned.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 30.1K bytes - Viewed (0)