Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for WINS (0.42 sec)

  1. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                        i++;
                    } else if (s.equalsIgnoreCase("WINS")) {
                        if (NbtAddress.getWINSAddress() == null) {
                            if (LogStream.level > 1) {
                                log.println("NetBIOS resolveOrder specifies WINS however the "
                                        + "jcifs.smb1.netbios.wins property has not been set");
                            }
                            continue;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/UniAddress.java

                        i++;
                    } else if (s.equalsIgnoreCase("WINS")) {
                        if (nbns == null) {
                            if (LogStream.level > 1) {
                                log.println("UniAddress resolveOrder specifies WINS however the "
                                        + "jcifs.smb1.netbios.wins property has not been set");
                            }
                            continue;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            return svr.equals(this.baddr) || svr.getAddress()[3] == (byte) 0xFF;
        }
    
        /**
         * Switches to the next available WINS server in round-robin fashion.
         *
         * @return the next WINS server address, or null if no WINS servers are configured
         */
        protected InetAddress switchWINS() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/config/BaseConfigurationTest.java

        }
    
        @Test
        @DisplayName("Test initResolverOrder with invalid resolver and WINS without server")
        void testInitResolverOrderWithInvalidResolver() {
            config.winsServer = new InetAddress[0];
            config.initResolverOrder("DNS,INVALID,WINS,LMHOSTS");
    
            List<ResolverType> order = config.getResolveOrder();
            assertEquals(2, order.size());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/ResolverType.java

     */
    package jcifs;
    
    /**
     * Enumeration of usable resolver types
     *
     * @author mbechler
     *
     */
    public enum ResolverType {
        /**
         * Resolve using WINS server
         */
        RESOLVER_WINS,
    
        /**
         * NETBIOS broadcast
         */
        RESOLVER_BCAST,
    
        /**
         * DNS
         */
        RESOLVER_DNS,
    
        /**
         * LMHosts file lookup
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

                        this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS);
                    } else if (s.equalsIgnoreCase("WINS")) {
                        if (this.winsServer.length == 0) {
                            log.error("UniAddress resolveOrder specifies WINS however " + " WINS server has not been configured");
                            continue;
                        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            }
        }
    
        /**
         * Gets the current WINS server address.
         *
         * @return the WINS server address, or null if no WINS servers are configured
         */
        public static InetAddress getWINSAddress() {
            return NBNS.length == 0 ? null : NBNS[nbnsIndex];
        }
    
        /**
         * Checks if the given address is a configured WINS server.
         *
         * @param svr the server address to check
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/UniAddress.java

     * This class is a wrapper for both {@link jcifs.netbios.NbtAddress}
     * and {@link java.net.InetAddress}. The name resolution mechanisms
     * used will systematically query all available configured resolution
     * services including WINS, broadcasts, DNS, and LMHOSTS. See
     * <a href="../../resolver.html">Setting Name Resolution Properties</a>
     * and the <code>jcifs.resolveOrder</code> property. Changing
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/config/PropertyConfigurationTest.java

            // Given
            Properties props = new Properties();
            props.setProperty("jcifs.netbios.wins", "192.168.1.1");
            props.setProperty("jcifs.netbios.baddr", "192.168.1.255");
            props.setProperty("jcifs.resolveOrder", "WINS,BCAST,DNS");
    
            // When
            PropertyConfiguration testConfig = new PropertyConfiguration(props);
    
            // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/netbios/NbtAddress.java

     *
     *
     *  * <b>About NetBIOS:</b> The NetBIOS name
     * service is a dynamic distributed service that allows hosts to resolve
     * names by broadcasting a query, directing queries to a server such as
     * Samba or WINS. NetBIOS is currently the primary networking layer for
     * providing name service, datagram service, and session service to the
     * Microsoft Windows platform. A NetBIOS name can be 15 characters long
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top