Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for wins (0.29 sec)

  1. 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)
  2. 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)
  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/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)
  6. 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)
  7. 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)
  8. 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)
  9. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            assertEquals(createSet(new Object[] {a.artifact, modifiedC}), res.getArtifacts(), "Check artifact list");
            Artifact artifact = getArtifact("c", res.getArtifacts());
            // local wins now, and irrelevant if not local as test/provided aren't transitive
            // assertEquals( Artifact.SCOPE_COMPILE, artifact.getArtifactScope(), "Check artifactScope" );
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 42.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/Configuration.java

         *
         * @return broadcast address to use
         */
        InetAddress getBroadcastAddress();
    
        /**
         *
         *
         * Property {@code jcifs.netbios.wins} (string, comma separated)
         *
         * @return WINS server to use
         */
        InetAddress[] getWinsServers();
    
        /**
         *
         * Property {@code jcifs.netbios.lport} (int)
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top