Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNbtAllByAddress (0.2 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)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        }
    
    
        @Override
        public NbtAddress[] getNbtAllByAddress ( String host ) throws UnknownHostException {
            return getNbtAllByAddress(getNbtByName(host, 0x00, null));
        }
    
    
        @Override
        public NbtAddress[] getNbtAllByAddress ( String host, int type, String scope ) throws UnknownHostException {
            return getNbtAllByAddress(getNbtByName(host, type, scope));
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NbtAddress.java

            if ( this.hostName.isUnknown() ) {
                tc.getNameServiceClient().getNbtAllByAddress(this);
            }
        }
    
    
        void checkNodeStatusData ( CIFSContext tc ) throws UnknownHostException {
            if ( this.isDataFromNodeStatus == false ) {
                tc.getNameServiceClient().getNbtAllByAddress(this);
            }
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 15.2K bytes
    - Viewed (0)
Back to top