Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                dst[dstIndex++] = maxSetupCount;
                dst[dstIndex++] = (byte)0x00;           // Reserved1
                writeInt2( flags, dst, dstIndex );
                dstIndex += 2;
                writeInt4( timeout, dst, dstIndex );
                dstIndex += 4;
                dst[dstIndex++] = (byte)0x00;           // Reserved2
                dst[dstIndex++] = (byte)0x00;
            }
            writeInt2( parameterCount, dst, dstIndex );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

                dst[ dstIndex++ ] = this.maxSetupCount;
                dst[ dstIndex++ ] = (byte) 0x00; // Reserved1
                SMBUtil.writeInt2(this.tflags, dst, dstIndex);
                dstIndex += 2;
                SMBUtil.writeInt4(this.timeout, dst, dstIndex);
                dstIndex += 4;
                dst[ dstIndex++ ] = (byte) 0x00; // Reserved2
                dst[ dstIndex++ ] = (byte) 0x00;
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 13:43:42 GMT 2020
    - 13.2K bytes
    - Viewed (0)
Back to top