Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for useNTSmbs (0.8 sec)

  1. src/main/java/jcifs/smb/SmbFileOutputStream.java

            }
    
            this.openFlags &= ~(SmbConstants.O_CREAT | SmbConstants.O_TRUNC); /* in case we close and reopen */
            this.writeSize = sendBufferSize - 70;
    
            this.useNTSmbs = th.hasCapability(SmbConstants.CAP_NT_SMBS);
            if (!this.useNTSmbs) {
                log.debug("No support for NT SMBs");
            }
    
            // there seems to be a bug with some servers that causes corruption if using signatures +
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

            this.openFlags &= ~(SmbFile.O_CREAT | SmbFile.O_TRUNC); /* in case close and reopen */
            writeSize = file.tree.session.transport.snd_buf_size - 70;
    
            useNTSmbs = file.tree.session.transport.hasCapability(SmbConstants.CAP_NT_SMBS);
            if (useNTSmbs) {
                reqx = new SmbComWriteAndX();
                rspx = new SmbComWriteAndXResponse();
            } else {
                req = new SmbComWrite();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/BaseConfiguration.java

        /** Whether to failover to port 139 if port 445 fails */
        protected boolean port139FailoverEnabled = false;
        /** Whether to use NT SMB operations */
        protected boolean useNTSmbs = true;
        /** Whether to use large read/write operations for better performance */
        protected boolean useLargeReadWrite = true;
        /** LAN Manager compatibility level for authentication */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** Whether signing is preferred */
        boolean SIGNPREF = Config.getBoolean("jcifs.smb1.smb.client.signingPreferred", false);
        /** Whether to use NT SMBs */
        boolean USE_NTSMBS = Config.getBoolean("jcifs.smb1.smb.client.useNTSmbs", true);
        /** Whether to use extended security */
        boolean USE_EXTSEC = Config.getBoolean("jcifs.smb1.smb.client.useExtendedSecurity", true);
    
        /** NetBIOS hostname */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/config/BaseConfigurationTest.java

        void testInitDefaultsWithCapabilityCombinations() throws CIFSException {
            BaseConfiguration testConfig = new BaseConfiguration(false);
            testConfig.useNTSmbs = true;
            testConfig.useNtStatus = true;
            testConfig.useExtendedSecurity = true;
            testConfig.useLargeReadWrite = true;
            testConfig.useUnicode = true;
    
            testConfig.initDefaults();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

            SmbException e = null;
            boolean useNTSmbs;
            SmbComWriteAndX reqx;
            SmbComWrite req;
            ServerMessageBlock resp;
    
            WriterThread() throws SmbException {
                super("JCIFS-WriterThread");
                useNTSmbs = tree.session.transport.hasCapability(SmbConstants.CAP_NT_SMBS);
                if (useNTSmbs) {
                    reqx = new SmbComWriteAndX();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top