Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/test/java/jcifs/NameServiceClientTest.java

            // Act & Assert
            assertThrows(UnknownHostException.class, () -> nameServiceClient.getNbtAllByName(host, type, scope, svr));
            verify(nameServiceClient, times(1)).getNbtAllByName(host, type, scope, svr);
        }
    
        @Test
        void testGetNbtByName_StringIntStringInetAddress() throws UnknownHostException {
            // Arrange
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.4K 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(final String host, final int type, final String scope, final InetAddress svr)
                throws UnknownHostException {
            return getAllByName(new Name(this.transportContext.getConfig(), host, type, scope), svr);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NameServiceClient.java

         * @param svr
         *            server to query
         *
         * @return the resolved addresses
         * @throws UnknownHostException if the host cannot be resolved
         */
        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: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpFilter.java

            int retry = 1;
    
            do {
                if (this.dcListExpiration < now) {
                    final 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: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.3K bytes
    - Viewed (0)
Back to top