Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rcv_buf_size (0.15 sec)

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

            this.smbSendBufferSize = Config.getInt(p, "jcifs.smb.client.snd_buf_size", SmbConstants.DEFAULT_SND_BUF_SIZE);
            this.smbRecvBufferSize = Config.getInt(p, "jcifs.smb.client.rcv_buf_size", SmbConstants.DEFAULT_RCV_BUF_SIZE);
            this.smbNotifyBufferSize = Config.getInt(p, "jcifs.smb.client.notify_buf_size", SmbConstants.DEFAULT_NOTIFY_BUF_SIZE);
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/Configuration.java

    
        /**
         * 
         * Property <tt>jcifs.smb.client.rcv_buf_size</tt> (int, default 65535)
         * 
         * @return receive buffer size, in bytes
         * @deprecated use getReceiveBufferSize instead
         */
        @Deprecated
        int getRecieveBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.rcv_buf_size</tt> (int, default 65535)
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

        protected int maxMpxCount = SmbConstants.DEFAULT_MAX_MPX_COUNT;
        protected int smbSendBufferSize = SmbConstants.DEFAULT_SND_BUF_SIZE;
        protected int smbRecvBufferSize = SmbConstants.DEFAULT_RCV_BUF_SIZE;
        protected int smbNotifyBufferSize = SmbConstants.DEFAULT_NOTIFY_BUF_SIZE;
        protected String nativeOs;
        protected String nativeLanMan = "jCIFS";
        protected int vcNumber = 1;
    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)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

            if( t1.snd_buf_size < t2.snd_buf_size ) {
                t2.snd_buf_size = t1.snd_buf_size;
            } else {
                t1.snd_buf_size = t2.snd_buf_size;
            }
    
            bsize = Math.min( t1.rcv_buf_size - 70, t1.snd_buf_size - 70 );
            b = new byte[2][bsize];
    
            try {
                copyTo0( dest, b, bsize, w, req, resp );
            } finally {
                w.write( null, -1, null, 0 );
    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