Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for haveResponse (0.11 sec)

  1. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

        }
    
    
        /**
         * {@inheritDoc}
         * 
         * @throws SMBProtocolDecodingException
         *
         * @see jcifs.internal.smb2.ServerMessageBlock2#haveResponse(byte[], int, int)
         */
        @Override
        protected void haveResponse ( byte[] buffer, int start, int len ) throws SMBProtocolDecodingException {
            if ( isRetainPayload() ) {
                byte[] payload = new byte[len];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

                // remaining in this receive.
                int rem = this.readSize - this.length;
                len += rem;
            }
    
            haveResponse(buffer, start, len);
    
            if ( this.nextCommand != 0 && this.next != null ) {
                if ( this.nextCommand % 8 != 0 ) {
                    throw new SMBProtocolDecodingException("Chained command is not aligned");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
Back to top