Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for getSendBufferSize (8.55 sec)

  1. src/main/java/jcifs/Configuration.java

        int getReceiveBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.snd_buf_size</tt> (int, default 65535)
         * 
         * @return send buffer size, in bytes
         */
        int getSendBufferSize ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.soTimeout</tt> (int, default 35000)
         * 
         * @return socket timeout, in milliseconds
         */
        int getSoTimeout ();
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                w.setDaemon(true);
    
                try {
                    w.start();
                    // use commonly acceptable buffer size
                    int bsize = Math.min(sh.getReceiveBufferSize() - 70, dh.getSendBufferSize() - 70);
                    byte[][] b = new byte[2][bsize];
                    copyRecursive(dest, b, bsize, w, sh, dh);
                }
                finally {
                    w.write(null, -1, null);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top