Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCapabilities (0.13 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java

        private int capabilities;
        private byte[] serverGuid = new byte[16];
        private int securityMode;
        private int dialect;
    
    
        /**
         * @return the capabilities
         */
        public int getCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * @return the serverGuid
         */
        public byte[] getServerGuid () {
            return this.serverGuid;
        }
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        /**
         * @return the shareFlags
         */
        public int getShareFlags () {
            return this.shareFlags;
        }
    
    
        /**
         * @return the capabilities
         */
        public int getCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * @return the maximalAccess
         */
        public int getMaximalAccess () {
            return this.maximalAccess;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon May 23 14:35:20 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

            return ( getSecurityMode() & Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED ) != 0;
        }
    
    
        /**
         * @return the capabilities
         */
        public int getCapabilities () {
            return this.capabilities;
        }
    
    
        /**
         * @return the dialects
         */
        public int[] getDialects () {
            return this.dialects;
        }
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.5K bytes
    - Viewed (0)
Back to top