Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getNbtAllByAddress (0.16 sec)

  1. src/test/java/jcifs/tests/DelegatingNameServiceClient.java

        }
    
    
        @Override
        public NetbiosAddress[] getNbtAllByAddress ( String host ) throws UnknownHostException {
            return this.nscl.getNbtAllByAddress(host);
        }
    
    
        @Override
        public NetbiosAddress[] getNbtAllByAddress ( String host, int type, String scope ) throws UnknownHostException {
            return this.nscl.getNbtAllByAddress(host, type, scope);
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/NameServiceClient.java

         *
         * @param addr
         *            the address to query
         * @return resolved addresses
         * @throws UnknownHostException
         *             if address cannot be resolved
         */
        NetbiosAddress[] getNbtAllByAddress ( NetbiosAddress addr ) throws UnknownHostException;
    
    
        /**
         * Retrieve all addresses of a host by it's address. NetBIOS hosts can
         * have many names for a given IP address. The name and IP address make
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.9K bytes
    - Viewed (0)
Back to top