- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for dialectRevision (0.06 sec)
-
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
assertEquals(128, credits); } @Test @DisplayName("Should return dialect revision") void testGetDialectRevision() throws Exception { // Given setPrivateField(response, "dialectRevision", 0x0311); // When int dialect = response.getDialectRevision(); // Then assertEquals(0x0311, dialect); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
public int getInitialCredits() { return getCredit(); } /** * Gets the SMB dialect revision selected by the server. * * @return the dialectRevision */ public int getDialectRevision() { return this.dialectRevision; } /** * Gets the server GUID used for identification. * * @return the serverGuid */ public byte[] getServerGuid() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0)