- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for CAP_EXTENDED_SECURITY (0.1 sec)
-
src/main/java/jcifs/config/BaseConfiguration.java
this.capabilities = ( this.useNTSmbs ? SmbConstants.CAP_NT_SMBS : 0 ) | ( this.useNtStatus ? SmbConstants.CAP_STATUS32 : 0 ) | ( this.useExtendedSecurity ? SmbConstants.CAP_EXTENDED_SECURITY : 0 ) | ( this.useLargeReadWrite ? SmbConstants.CAP_LARGE_READX : 0 ) | ( this.useLargeReadWrite ? SmbConstants.CAP_LARGE_WRITEX : 0 ) | ( this.useUnicode ? SmbConstants.CAP_UNICODE : 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) -
src/main/java/jcifs/smb/SmbSessionImpl.java
boolean anonymous = this.credentials.isAnonymous(); do { switch ( state ) { case 10: /* NTLM */ if ( trans.hasCapability(SmbConstants.CAP_EXTENDED_SECURITY) ) { log.debug("Extended security negotiated"); state = 20; /* NTLMSSP */ break; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0)