- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for dialectRevision (0.31 seconds)
-
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
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 32.5K bytes - Click Count (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() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24K bytes - Click Count (0)