Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getResponseRaw (0.18 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  2. 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;
        }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  3. 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));
                }
            }
        }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 69.8K bytes
    - Click Count (0)
Back to Top