Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0xF4 (0.12 sec)

  1. src/main/java/jcifs/netbios/NameServicePacket.java

            writeInt2(this.nameTrnId, dst, dstIndex);
            dst[ dstIndex + OPCODE_OFFSET ] = (byte) ( ( this.isResponse ? 0x80 : 0x00 ) + ( ( this.opCode << 3 ) & 0x78 )
                    + ( this.isAuthAnswer ? 0x04 : 0x00 ) + ( this.isTruncated ? 0x02 : 0x00 ) + ( this.isRecurDesired ? 0x01 : 0x00 ) );
            dst[ dstIndex + OPCODE_OFFSET
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

            writeInt2( nameTrnId, dst, dstIndex );
            dst[dstIndex + OPCODE_OFFSET] = (byte)(( isResponse ? 0x80 : 0x00 ) +
                            (( opCode << 3 ) & 0x78 ) +
                            ( isAuthAnswer ? 0x04 : 0x00 ) +
                            ( isTruncated ? 0x02 : 0x00 ) +
                            ( isRecurDesired ? 0x01 : 0x00 ));
            dst[dstIndex + OPCODE_OFFSET + 1] = (byte)(( isRecurAvailable ? 0x80 : 0x00 ) +
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.4K bytes
    - Viewed (0)
Back to top