- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getRequestRaw (0.37 sec)
-
src/test/java/jcifs/internal/SmbNegotiationTest.java
assertSame(response, negotiation.getResponse()); } @Test @DisplayName("getRequestRaw should return the same request buffer") void testGetRequestRaw() { // Verify getRequestRaw returns the exact same array instance byte[] requestBuffer = negotiation.getRequestRaw(); assertSame(testRequestBuffer, requestBuffer); // 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
return this.response; } /** * Gets the raw negotiation request buffer. * * @return the negoReqBuffer */ public byte[] getRequestRaw() { return this.negoReqBuffer; } /** * Gets the raw negotiation response buffer. * * @return the negoRespBuffer */ public byte[] getResponseRaw() {
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.tconHostName = this.address.getHostName(); 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)