Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for enabled (0.17 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

            }
    
            if ( log.isDebugEnabled() ) {
                log.debug(
                    "Signing " + ( ( this.negotiatedFlags2 & SmbConstants.FLAGS2_SECURITY_SIGNATURES ) != 0 ? "enabled " : "not-enabled " )
                            + ( ( this.negotiatedFlags2 & SmbConstants.FLAGS2_SECURITY_REQUIRE_SIGNATURES ) != 0 ? "required" : "not-required" ));
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFileOutputStream.java

                this.writeSizeFile = Math.min(th.getConfig().getSendBufferSize() - 70, 0xFFFF - 70);
            }
            else {
                log.debug("No support or SMB signing is enabled, not enabling large writes");
                this.writeSizeFile = this.writeSize;
            }
    
            if ( log.isDebugEnabled() ) {
                log.debug("Negotiated file write size is " + this.writeSizeFile);
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/EnumTest.java

            }
        }
    
    
        @Test
        public void testBrowseDomainNetbios () throws MalformedURLException, CIFSException {
    
            // only do this if a WINS server is enabled
            getRequiredProperty("jcifs.netbios.wins");
    
            CIFSContext bctx = withAnonymousCredentials();
    
            // ensure that the domain name gets resolved through WINS so that
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                        reconnect();
                    } else {
                        break;
                    }
                }
                throw new IOException("Unable to negotiate NTLM authentication.");
            } finally {
                cachedOutput = null;
            }
        }
    
        private NtlmMessage attemptNegotiation(int response) throws IOException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

                sids.decode(_src);
                retval = (int)_src.dec_ndr_long();
            }
        }
        public static final int SE_GROUP_MANDATORY = 1;
        public static final int SE_GROUP_ENABLED_BY_DEFAULT = 2;
        public static final int SE_GROUP_ENABLED = 4;
        public static final int SE_GROUP_OWNER = 8;
        public static final int SE_GROUP_USE_FOR_DENY_ONLY = 16;
        public static final int SE_GROUP_RESOURCE = 536870912;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 14K bytes
    - Viewed (0)
  6. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to enforce the use of secure negotiation.
         */
        boolean isRequireSecureNegotiate ();
    
    
        /**
         * Enable port 139 failover
         * 
         * Property <tt>jcifs.smb.client.port139.enabled</tt> (boolean, default false)
         * 
         * @return whether to failover to legacy transport on port 139
         */
        boolean isPort139FailoverEnabled ();
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

         *
         * @see jcifs.internal.SmbNegotiationResponse#isSigningEnabled()
         */
        @Override
        public boolean isSigningEnabled () {
            return ( this.securityMode & ( Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED ) ) != 0;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbNegotiationResponse#isSigningRequired()
         */
        @Override
        public boolean isSigningRequired () {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                            if ( log.isTraceEnabled() ) {
                                log.debug("Cannot reuse, signing enforced but connection does not have it enabled " + conn);
                            }
                            continue;
                        }
    
                        if ( !forceSigning && !tc.getConfig().isSigningEnforced() && conn.isSigningEnforced()
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 12.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/samr.java

                this.retval = _src.dec_ndr_long();
            }
        }
    
        public static final int SE_GROUP_MANDATORY = 1;
        public static final int SE_GROUP_ENABLED_BY_DEFAULT = 2;
        public static final int SE_GROUP_ENABLED = 4;
        public static final int SE_GROUP_OWNER = 8;
        public static final int SE_GROUP_USE_FOR_DENY_ONLY = 16;
        public static final int SE_GROUP_RESOURCE = 536870912;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 15.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTreeConnection.java

                DfsReferralData referral ) throws CIFSException {
            if ( log.isDebugEnabled() && trans.isSigningOptional() && !loc.isIPC() && !this.ctx.getConfig().isSigningEnforced() ) {
                log.debug("Signatures for file enabled but not required " + this);
            }
    
            if ( referral != null ) {
                t.markDomainDfs();
            }
    
            try {
                if ( log.isTraceEnabled() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
Back to top