Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for exceeded (0.17 sec)

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

            }
    
            if ( this.flags2 == 0 ) {
                this.flags2 = SmbConstants.FLAGS2_LONG_FILENAMES | SmbConstants.FLAGS2_EXTENDED_ATTRIBUTES
                        | ( this.useExtendedSecurity ? SmbConstants.FLAGS2_EXTENDED_SECURITY_NEGOTIATION : 0 )
                        | ( this.signingPreferred ? SmbConstants.FLAGS2_SECURITY_SIGNATURES : 0 )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                        chain = next;
                    }
                    else if ( last == null && totalSize + size > maxSize ) {
                        throw new SmbException(String.format("Request size %d exceeds allowable size %d: %s", size, maxSize, chain));
                    }
                    else if ( last == null ) {
                        // don't have enough credits/space for the first request, block until available
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         */
        boolean isEncryptionEnabled ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.forceExtendedSecurity</tt> (boolean, default false)
         * 
         * @return whether to force extended security usage
         */
        boolean isForceExtendedSecurity ();
    
    
        /**
         * 
         * 
         * Property <tt>jcifs.netbios.lmhosts</tt> (string)
         * 
         * @return lmhosts file to use
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/SessionTest.java

    import jcifs.smb.SmbSessionInternal;
    import jcifs.smb.SmbTransportInternal;
    import jcifs.smb.SmbTreeHandleInternal;
    
    
    /**
     * 
     * 
     * 
     * Compatability Notes:
     * - Windows (2k8, 2k12) servers do not like extended security + DOS error codes
     * 
     * @author mbechler
     *
     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( {
        "javadoc", "deprecation"
    } )
    public class SessionTest extends BaseCIFSTest {
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                    if ( trans.hasCapability(SmbConstants.CAP_EXTENDED_SECURITY) ) {
                        log.debug("Extended security negotiated");
                        state = 20; /* NTLMSSP */
                        break;
                    }
                    else if ( getContext().getConfig().isForceExtendedSecurity() ) {
                        throw new SmbException("Server does not supported extended security");
                    }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /**
     * A file with this bit on as returned by <tt>getAttributes()</tt> or set
     * with <tt>setAttributes()</tt> is an archived file
     */
        public static final int ATTR_ARCHIVE    = 0x20;
    
        // extended file attribute encoding(others same as above)
        static final int ATTR_COMPRESSED       = 0x800;
        static final int ATTR_NORMAL           = 0x080;
        static final int ATTR_TEMPORARY        = 0x100;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top