Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getMacAddress (0.11 sec)

  1. 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: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
Back to top