Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isSendNTLMTargetName (0.46 sec)

  1. src/main/java/jcifs/config/DelegatingConfiguration.java

            return this.delegate.isRequireSecureNegotiate();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isSendNTLMTargetName()
         */
        @Override
        public boolean isSendNTLMTargetName () {
            return this.delegate.isSendNTLMTargetName();
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.Configuration#isPort139FailoverEnabled()
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/config/BaseConfiguration.java

        }
    
    
        @Override
        public boolean isStrictResourceLifecycle () {
            return this.strictResourceLifecycle;
        }
    
    
        @Override
        public boolean isSendNTLMTargetName () {
            return this.sendNTLMTargetName;
        }
    
    
        @Override
        public String getGuestUsername () {
            return this.guestUsername;
        }
    
    
        @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/smb/NtlmPasswordAuthenticator.java

        }
    
    
        private static SSPContext setupTargetName ( CIFSContext tc, String host, NtlmContext ntlmContext ) {
            if ( host != null && tc.getConfig().isSendNTLMTargetName() ) {
                ntlmContext.setTargetName(String.format("cifs/%s", host));
            }
            return ntlmContext;
        }
    
    
        @Override
        public NtlmPasswordAuthenticator clone () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

    
        /**
         * Property <tt>jcifs.smb.client.SendNTLMTargetName</tt> (boolean, true)
         * 
         * @return whether to send an AvTargetName with the NTLM exchange
         */
        boolean isSendNTLMTargetName ();
    
    
        /**
         * Property <tt>jcifs.smb.client.guestPassword</tt>, defaults to empty string
         * 
         * @return password used when guest authentication is requested
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top