- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getResponseRaw (0.05 sec)
-
src/test/java/jcifs/internal/SmbNegotiationTest.java
} @Test @DisplayName("getResponseRaw should return the same response buffer") void testGetResponseRaw() { // Verify getResponseRaw returns the exact same array instance byte[] responseBuffer = negotiation.getResponseRaw(); assertSame(testResponseBuffer, responseBuffer); // Verify multiple calls return the same instance
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiation.java
public byte[] getRequestRaw() { return this.negoReqBuffer; } /** * Gets the raw negotiation response buffer. * * @return the negoRespBuffer */ public byte[] getResponseRaw() { return this.negoRespBuffer; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
this.negotiated = resp.getResponse(); if (resp.getResponse().getSelectedDialect().atLeast(DialectVersion.SMB311)) { updatePreauthHash(resp.getRequestRaw()); updatePreauthHash(resp.getResponseRaw()); if (log.isDebugEnabled()) { log.debug("Preauth hash after negotiate " + Hexdump.toHexString(this.preauthIntegrityHash)); } } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0)