- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getCommonCapabilities (0.07 seconds)
-
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
} /** * Gets the common capabilities negotiated between client and server. * * @return the common/negotiated capabilities */ public final int getCommonCapabilities() { return this.commonCapabilities; } /** * Gets the initial security blob for authentication negotiation. * * @return initial security blob */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} token = createToken(ctx, token, s); if (token != null) { request = new Smb2SessionSetupRequest(this.getContext(), securityMode, negoResp.getCommonCapabilities(), 0, token); // here, messages are rejected with NOT_SUPPORTED if we start signing as soon as we can, wait until // session setup complete request.setSessionId(sessId);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 68.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
void testGetCommonCapabilities() throws Exception { // Given setPrivateField(response, "commonCapabilities", 0x3F); // When int caps = response.getCommonCapabilities(); // Then assertEquals(0x3F, caps); } @Test @DisplayName("Should return security blob") void testGetSecurityBlob() throws Exception { // Given
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)