Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getMaxMpxCount (0.19 sec)

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

            return this.delegate.getPid();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#getMaxMpxCount()
         */
        @Override
        public int getMaxMpxCount () {
            return this.delegate.getMaxMpxCount();
        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @see jcifs.Configuration#isSigningEnabled()
         */
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
  2. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

            this.server = new ServerData();
            this.capabilities = ctx.getConfig().getCapabilities();
            this.negotiatedFlags2 = ctx.getConfig().getFlags2();
            this.maxMpxCount = ctx.getConfig().getMaxMpxCount();
            this.snd_buf_size = ctx.getConfig().getSendBufferSize();
            this.recv_buf_size = ctx.getConfig().getReceiveBufferSize();
            this.tx_buf_size = ctx.getConfig().getTransactionBufferSize();
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

            return this.smbRecvBufferSize;
        }
    
    
        @Override
        public int getNotifyBufferSize () {
            return this.smbNotifyBufferSize;
        }
    
    
        @Override
        public int getMaxMpxCount () {
            return this.maxMpxCount;
        }
    
    
        @Override
        public String getNativeLanman () {
            return this.nativeLanMan;
        }
    
    
        @Override
    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/main/java/jcifs/Configuration.java

        int getPid ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.maxMpxCount</tt> (int, default 10)
         * 
         * @return maximum count of concurrent commands to announce
         */
        int getMaxMpxCount ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.signingPreferred</tt> (boolean, default false)
         * 
         * @return whether to enable SMB signing (for everything), if available
         */
    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