Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSecurityMode (0.1 sec)

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

        /**
         * Gets the security mode flags for this negotiation request.
         *
         * @return the securityMode
         */
        public int getSecurityMode() {
            return this.securityMode;
        }
    
        @Override
        public boolean isSigningEnforced() {
            return (getSecurityMode() & Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED) != 0;
        }
    
        /**
         * Gets the client capabilities flags.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java

        public byte[] getServerGuid() {
            return this.serverGuid;
        }
    
        /**
         * Gets the security mode
         *
         * @return the security mode flags from the server
         */
        public int getSecurityMode() {
            return this.securityMode;
        }
    
        /**
         * Gets the negotiated SMB dialect
         *
         * @return the SMB dialect negotiated with the server
         */
        public int getDialect() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top