Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bufsize (0.04 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

                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);
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                try {
                    w.start();
                    // use commonly acceptable buffer size
                    final int bsize = Math.min(sh.getReceiveBufferSize() - 70, dh.getSendBufferSize() - 70);
                    final byte[][] b = new byte[2][bsize];
                    copyRecursive(dest, b, bsize, w, sh, dh);
                } finally {
                    w.write(null, -1, null);
                    w.interrupt();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top