- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 161 for readInt2 (0.16 sec)
-
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
int structureSize = SMBUtil.readInt2(buffer, bufferIndex); if ( structureSize != 9 ) { throw new SMBProtocolDecodingException("Structure size != 9"); } this.sessionFlags = SMBUtil.readInt2(buffer, bufferIndex + 2); bufferIndex += 4; int securityBufferOffset = SMBUtil.readInt2(buffer, bufferIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServicePacket.java
this.resultCode = src[ srcIndex + OPCODE_OFFSET + 1 ] & 0x0F; this.questionCount = readInt2(src, srcIndex + QUESTION_OFFSET); this.answerCount = readInt2(src, srcIndex + ANSWER_OFFSET); this.authorityCount = readInt2(src, srcIndex + AUTHORITY_OFFSET); this.additionalCount = readInt2(src, srcIndex + ADDITIONAL_OFFSET); return HEADER_LENGTH; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
resultCode = src[srcIndex + OPCODE_OFFSET + 1] & 0x0F; questionCount = readInt2( src, srcIndex + QUESTION_OFFSET ); answerCount = readInt2( src, srcIndex + ANSWER_OFFSET ); authorityCount = readInt2( src, srcIndex + AUTHORITY_OFFSET ); additionalCount = readInt2( src, srcIndex + ADDITIONAL_OFFSET ); return HEADER_LENGTH; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
bufferIndex += 2; this.fileType = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.deviceState = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.action = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.serverFid = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 6;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralResponseBuffer.java
int start = bufferIndex; this.pathConsumed = SMBUtil.readInt2(buffer, bufferIndex) / 2; bufferIndex += 2; this.numReferrals = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.tflags = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 4; this.referrals = new Referral[this.numReferrals];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
bufferIndex += 2; this.parameterDisplacement = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.dataCount = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.dataOffset = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; this.dataDisplacement = SMBUtil.readInt2(buffer, bufferIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetShareEnumResponse.java
int start = bufferIndex; status = readInt2( buffer, bufferIndex ); bufferIndex += 2; converter = readInt2( buffer, bufferIndex ); bufferIndex += 2; numEntries = readInt2( buffer, bufferIndex ); bufferIndex += 2; totalAvailableEntries = readInt2( buffer, bufferIndex ); bufferIndex += 2; return bufferIndex - start;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
// these are common between SYNC/ASYNC SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; SMBUtil.readInt2(buffer, bufferIndex); this.creditCharge = SMBUtil.readInt2(buffer, bufferIndex + 2); bufferIndex += 4; this.status = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.command = SMBUtil.readInt2(buffer, bufferIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 30 10:47:31 UTC 2018 - 19.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java
type = ServerMessageBlock.readInt2(buffer, bufferIndex); bufferIndex += 2; int ownerUOffset = ServerMessageBlock.readInt4(buffer, bufferIndex); // offset to owner sid bufferIndex += 4; int ownerGOffset = ServerMessageBlock.readInt4(buffer, bufferIndex); // offset to group sid bufferIndex += 4; int saclOffset = ServerMessageBlock.readInt4(buffer, bufferIndex); // offset to sacl
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComLockingAndX.java
int nunlocks = SMBUtil.readInt2(buffer, bufferIndex); this.unlocks = new LockingAndXRange[nunlocks]; bufferIndex += 2; int nlocks = SMBUtil.readInt2(buffer, bufferIndex); this.locks = new LockingAndXRange[nlocks]; bufferIndex += 2; return start - bufferIndex; } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.9K bytes - Viewed (0)