Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCommonCapabilities (0.19 sec)

  1. 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);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  2. 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
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  3. 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
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 32.5K bytes
    - Viewed (0)
Back to top