Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for remaining (0.21 sec)

  1. src/main/java/jcifs/smb1/util/MD4.java

         * <p>
         * Continues an MD4 message digest operation, by filling the buffer,
         * transform(ing) data in 512-bit message block(s), updating the variables
         * context and count, and leaving (buffering) the remaining bytes in buffer
         * for the next update or finish.
         *
         * @param    input    input block
         * @param    offset    start of meaningful bytes in input
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

                // The final response in the compounded response chain will have NextCommand equal to 0,
                // and it MUST be processed as an individual message of a size equal to the number of bytes
                // remaining in this receive.
                int rem = this.readSize - this.length;
                len += rem;
            }
    
            haveResponse(buffer, start, len);
    
            if ( this.nextCommand != 0 && this.next != null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                            log.debug("Breaking on error " + resp);
                        }
                        break;
                    }
    
                    if ( nextHead != null ) {
                        // prepare remaining
                        // (e.g. set session/tree/fileid returned by the previous requests)
                        resp.prepare(nextHead);
                    }
                    curHead = nextHead;
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top