Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getNbtAllByName (0.22 sec)

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

            return this.nscl.getNbtByName(host, type, scope, svr);
        }
    
    
        @Override
        public NetbiosAddress[] getNbtAllByName ( String host, int type, String scope, InetAddress svr ) throws UnknownHostException {
            return this.nscl.getNbtAllByName(host, type, scope, svr);
        }
    
    
        @Override
        public NetbiosAddress[] getNbtAllByAddress ( String host ) throws UnknownHostException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                return doNameQuery(name, svr);
            }
            return new NbtAddress(getUnknownName(), IP, false, NbtAddress.B_NODE);
        }
    
    
        @Override
        public NbtAddress[] getNbtAllByName ( String host, int type, String scope, InetAddress svr ) throws UnknownHostException {
            return getAllByName(new Name(this.transportContext.getConfig(), host, type, scope), svr);
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NameServiceClient.java

         *            the scope of the name
         * @param svr
         *            server to query
         * 
         * @return the resolved addresses
         * @throws UnknownHostException
         */
        NetbiosAddress[] getNbtAllByName ( String host, int type, String scope, InetAddress svr ) throws UnknownHostException;
    
    
        /**
         * Determines the address of a host given it's host name. NetBIOS
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpFilter.java

            long now = System.currentTimeMillis();
            int retry = 1;
    
            do {
                if ( this.dcListExpiration < now ) {
                    Address[] list = getTransportContext().getNameServiceClient().getNbtAllByName(domain, 0x1C, null, null);
                    this.dcListExpiration = now + this.netbiosCacheTimeout * 1000L;
                    if ( list != null && list.length > 0 ) {
                        this.dcList = list;
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
Back to top