Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for maxMpxCount (0.71 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

                        + ((this.negotiatedFlags2 & SmbConstants.FLAGS2_SECURITY_REQUIRE_SIGNATURES) != 0 ? "required" : "not-required"));
            }
    
            this.maxMpxCount = Math.min(this.maxMpxCount, this.server.smaxMpxCount);
            if (this.maxMpxCount < 1) {
                this.maxMpxCount = 1;
            }
            this.snd_buf_size = Math.min(this.snd_buf_size, this.server.maxBufferSize);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            } else {
                flags2 &= 0xFFFF ^ SmbConstants.FLAGS2_SECURITY_SIGNATURES;
            }
            maxMpxCount = Math.min(maxMpxCount, server.maxMpxCount);
            if (maxMpxCount < 1) {
                maxMpxCount = 1;
            }
            snd_buf_size = Math.min(snd_buf_size, server.maxBufferSize);
            capabilities &= server.capabilities;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java

            int bufferIndex = 0;
    
            // dialectIndex
            buffer[bufferIndex++] = 5;
            buffer[bufferIndex++] = 0;
            // securityMode
            buffer[bufferIndex++] = 0x03;
            // maxMpxCount
            buffer[bufferIndex++] = 50;
            buffer[bufferIndex++] = 0;
            // maxNumberVcs
            buffer[bufferIndex++] = 1;
            buffer[bufferIndex++] = 0;
            // maxBufferSize
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** Local port to bind to */
        int LPORT = Config.getInt("jcifs.smb1.smb.client.lport", 0);
        /** Maximum multiplex count */
        int MAX_MPX_COUNT = Config.getInt("jcifs.smb1.smb.client.maxMpxCount", DEFAULT_MAX_MPX_COUNT);
        /** Send buffer size in bytes */
        int SND_BUF_SIZE = Config.getInt("jcifs.smb1.smb.client.snd_buf_size", DEFAULT_SND_BUF_SIZE);
        /** Receive buffer size in bytes */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

        protected InetAddress smbLocalAddress;
        /** Local port to bind for SMB connections */
        protected int smbLocalPort = 0;
        /** Maximum multiplex count for concurrent requests */
        protected int maxMpxCount = SmbConstants.DEFAULT_MAX_MPX_COUNT;
        /** Send buffer size for SMB socket operations */
        protected int smbSendBufferSize = SmbConstants.DEFAULT_SND_BUF_SIZE;
        /** Receive buffer size for SMB socket operations */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         * Gets the process ID to use in SMB messages
         *
         * @return Process id to send, randomized if unset
         */
        int getPid();
    
        /**
         *
         * Property {@code jcifs.smb.client.maxMpxCount} (int, default 10)
         *
         * @return maximum count of concurrent commands to announce
         */
        int getMaxMpxCount();
    
        /**
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
Back to top