Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCommonCapabilities (0.21 sec)

  1. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

         */
        public final int getCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * @return the common/negotiated capabilieis
         */
        public final int getCommonCapabilities () {
            return this.commonCapabilities;
        }
    
    
        /**
         * @return initial security blob
         */
        public byte[] getSecurityBlob () {
            return this.securityBuffer;
        }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  2. 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);
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top