Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for resolveOrder (0.28 sec)

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

                } else {
                    resolveOrder = new int[3];
                    resolveOrder[0] = RESOLVER_LMHOSTS;
                    resolveOrder[1] = RESOLVER_WINS;
                    resolveOrder[2] = RESOLVER_BCAST;
                }
            } else {
                int[] tmp = new int[3];
                StringTokenizer st = new StringTokenizer( RO, "," );
                int i = 0;
                while( st.hasMoreTokens() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/UniAddress.java

                    resolveOrder[2] = RESOLVER_BCAST;
                } else {
                    resolveOrder = new int[4];
                    resolveOrder[0] = RESOLVER_LMHOSTS;
                    resolveOrder[1] = RESOLVER_WINS;
                    resolveOrder[2] = RESOLVER_DNS;
                    resolveOrder[3] = RESOLVER_BCAST;
                }
            } else {
                int[] tmp = new int[4];
                StringTokenizer st = new StringTokenizer( ro, "," );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

                    this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS);
                    this.resolverOrder.add(ResolverType.RESOLVER_DNS);
                    this.resolverOrder.add(ResolverType.RESOLVER_BCAST);
                }
                else {
                    this.resolverOrder.add(ResolverType.RESOLVER_LMHOSTS);
                    this.resolverOrder.add(ResolverType.RESOLVER_DNS);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  4. src/test/java/jcifs/tests/NamingTest.java

            super(name, properties);
        }
    
    
        @Test
        public void testWINSOnly () throws CIFSException, UnknownHostException {
            Properties prop = new Properties();
            prop.setProperty("jcifs.resolveOrder", "WINS");
            prop.setProperty("jcifs.netbios.wins", getRequiredProperty("jcifs.netbios.wins"));
    
            PropertyConfiguration cfg = new PropertyConfiguration(prop);
            BaseContext c = new BaseContext(cfg);
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 06 10:48:05 GMT 2020
    - 7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            }
    
            /*
             * If a target address to query was not specified explicitly
             * with the addr parameter we fall into this resolveOrder routine.
             */
    
            for ( ResolverType resolverType : this.resolveOrder ) {
                try {
                    switch ( resolverType ) {
                    case RESOLVER_LMHOSTS:
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/PropertyConfiguration.java

                initProtocolVersions(nosmb1 ? DialectVersion.SMB202 : null, !smb2 ? DialectVersion.SMB1 : null);
            }
    
            initResolverOrder(p.getProperty("jcifs.resolveOrder"));
            initDisallowCompound(p.getProperty("jcifs.smb.client.disallowCompound"));
            initDefaults();
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/UniAddress.java

     * 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
     * jCIFS name resolution properties can greatly affect the behavior of
     * the client and may be necessary for proper operation.
     * <p>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

         * @return whether the usage of plaintext passwords is prohibited, defaults to false
         */
        boolean isDisablePlainTextPasswords ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.resolveOrder</tt> (string, default <tt>LMHOSTS,DNS,WINS,BCAST</tt>)
         * 
         * @return order and selection of resolver modules, see {@link ResolverType}
         */
        List<ResolverType> getResolveOrder ();
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top