Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for errcode (0.14 sec)

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

                 */
    
                bufferIndex = headerStart + andxOffset;
    
                andx.headerStart = headerStart;
                andx.command = andxCommand;
                andx.errorCode = errorCode;
                andx.flags = flags;
                andx.flags2 = flags2;
                andx.tid = tid;
                andx.pid = pid;
                andx.uid = uid;
                andx.mid = mid;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

             * and bytes as usual. Note how we can't just call andx.readWireFormat
             * because there's no header.
             */
    
            if ( this.errorCode != 0 || this.andxCommand == (byte) 0xFF ) {
                this.andxCommand = (byte) 0xFF;
                this.andx = null;
            }
            else if ( this.andx == null ) {
                this.andxCommand = (byte) 0xFF;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
Back to top