Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getMacAddress (0.13 sec)

  1. 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: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  2. 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)
  3. 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