Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for unconfigured (0.87 sec)

  1. src/main/java/jcifs/netbios/UniAddress.java

     * <p>
     * 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
    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)
  2. src/main/java/jcifs/smb1/UniAddress.java

     * <p>
     * This class is a wrapper for both {@link jcifs.smb1.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.smb1.resolveOrder</code> property. Changing
    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/netbios/NameServiceClientImpl.java

                    return true;
                }
            }
            return false;
        }
    
    
        /**
         *
         * @param svr
         * @return whether the given address is the configured broadcast address
         */
        private boolean isBroadcastAddress(InetAddress svr) {
            return svr.equals(this.baddr) || svr.getAddress()[3] == (byte) 0xFF;
        }
    
    
    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)
  4. src/main/java/jcifs/smb/JAASAuthenticator.java

         * 
         * This will require that a keytab is configured in this service.
         * 
         * 
         */
        public JAASAuthenticator () {
            this("jcifs");
        }
    
    
        /**
         * Create an authenticator using the given JAAS service
         * 
         * This will require that a keytab is configured in this service.
         * 
         * @param serviceName
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/CIFSContext.java

    
        /**
         * @return whether default credentials are available
         */
        boolean hasDefaultCredentials ();
    
    
        /**
         * @return a child context using the configured default credentials
         */
        CIFSContext withDefaultCredentials ();
    
    
        /**
         * @return a child context using anonymous credentials
         */
        CIFSContext withAnonymousCredentials ();
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

                t.acquire();
                this.trees.add(t);
                return t;
            }
        }
    
    
        /**
         * Establish a tree connection with the configured logon share
         * 
         * @throws SmbException
         */
        @Override
        public void treeConnectLogon () throws SmbException {
            String logonShare = getContext().getConfig().getLogonShare();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

                    else if ( s.equalsIgnoreCase("WINS") ) {
                        if ( this.winsServer.length == 0 ) {
                            log.error("UniAddress resolveOrder specifies WINS however " + " WINS server has not been configured");
                            continue;
                        }
                        this.resolverOrder.add(ResolverType.RESOLVER_WINS);
                    }
                    else if ( s.equalsIgnoreCase("BCAST") ) {
    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)
Back to top