- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getNegotiatedSessionKey (0.14 seconds)
-
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
return this.maxMpxCount; } /** * Gets the negotiated session key. * * @return negotiated session key */ public int getNegotiatedSessionKey() { return this.sessionKey; } /** * {@inheritDoc} * * @see jcifs.internal.SmbNegotiationResponse#getReceiveBufferSize() */ @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 15.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
dstIndex += 2; SMBUtil.writeInt2(getConfig().getVcNumber(), dst, dstIndex); dstIndex += 2; SMBUtil.writeInt4(this.negotiated.getNegotiatedSessionKey(), dst, dstIndex); dstIndex += 4; if (this.blob != null) { SMBUtil.writeInt2(this.blob.length, dst, dstIndex); } else {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXTest.java
when(mockNegotiate.getNegotiatedSendBufferSize()).thenReturn(65535); when(mockNegotiate.getNegotiatedMpxCount()).thenReturn(65535); when(mockNegotiate.getNegotiatedSessionKey()).thenReturn(0x12345678); } /** Simple test stub of {@link ServerData} */ private static class ServerDataStub extends ServerData { public ServerDataStub() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 6.4K bytes - Click Count (0)