Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getDialectIndex (1.45 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

        }
    
        /**
         * Returns the index of the selected SMB dialect from the negotiation.
         *
         * @return the dialectIndex
         */
        public int getDialectIndex() {
            return this.dialectIndex;
        }
    
        /**
         * Returns the server capabilities negotiated during the SMB handshake.
         *
         * @return the negotiated capabilities
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java

            // encryptionKeyLength
            buffer[bufferIndex++] = 8;
    
            int bytesRead = response.readParameterWordsWireFormat(buffer, 0);
            assertEquals(34, bytesRead);
            assertEquals(5, response.getDialectIndex());
            assertTrue(response.getServerData().encryptedPasswords);
            assertEquals(50, response.getServerData().smaxMpxCount);
            assertEquals(1, response.getServerData().maxNumberVcs);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top