Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for useNtStatus (0.19 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

                        | ( this.useNtStatus ? SmbConstants.FLAGS2_STATUS32 : 0 )
                        | ( this.useUnicode || this.forceUnicode ? SmbConstants.FLAGS2_UNICODE : 0 );
            }
    
            if ( this.capabilities == 0 ) {
                this.capabilities = ( this.useNTSmbs ? SmbConstants.CAP_NT_SMBS : 0 ) | ( this.useNtStatus ? SmbConstants.CAP_STATUS32 : 0 )
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/AllTests.java

                @Override
                public Map<String, String> mutate ( Map<String, String> cfg ) {
                    cfg.put("jcifs.smb.client.maxVersion", "SMB1");
                    cfg.put("jcifs.smb.client.useNtStatus", "false");
                    return cfg;
                }
            });
    
            MUTATIONS.put("noNTSmbs", new TestMutation() {
    
                @Override
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
Back to top