Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isDfsDisabled (0.13 sec)

  1. src/main/java/jcifs/smb/DfsImpl.java

         */
        public DfsImpl ( CIFSContext tc ) {}
    
    
        private Map<String, Map<String, CacheEntry<DfsReferralDataInternal>>> getTrustedDomains ( CIFSContext tf ) throws SmbAuthException {
            if ( tf.getConfig().isDfsDisabled() || tf.getCredentials().getUserDomain() == null || tf.getCredentials().getUserDomain().isEmpty() ) {
                return null;
            }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

            return this.useUnicode;
        }
    
    
        @Override
        public boolean isForceUnicode () {
            return this.forceUnicode;
        }
    
    
        @Override
        public boolean isDfsDisabled () {
            return this.dfsDisabled;
        }
    
    
        @Override
        public boolean isDfsStrictView () {
            return this.dfsStrictView;
        }
    
    
        @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

        boolean isDfsStrictView ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.dfs.disabled</tt> (boolean, default false)
         * 
         * @return whether DFS lookup is disabled
         */
        boolean isDfsDisabled ();
    
    
        /**
         * Enable hack to make kerberos auth work with DFS sending short names
         * 
         * This works by appending the domain name to the netbios short name and will fail horribly if this mapping is not
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

         */
        private void checkReferral ( Response resp, String path, RequestWithPath req ) throws SmbException, DfsReferral {
            DfsReferralData dr = null;
            if ( !getContext().getConfig().isDfsDisabled() ) {
                try {
                    dr = getDfsReferrals(getContext(), path, req.getServer(), req.getDomain(), 1);
                }
                catch ( CIFSException e ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top