- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getDialect (0.1 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java
/** * @return the securityMode */ public int getSecurityMode () { return this.securityMode; } /** * @return the dialect */ public int getDialect () { return this.dialect; } /** * {@inheritDoc} * * @see jcifs.Decodable#decode(byte[], int, int) */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/DialectVersion.java
} /** * @return the smb2 */ public final boolean isSMB2 () { return this.smb2; } /** * @return the dialect */ public final int getDialect () { if ( !this.smb2 ) { throw new UnsupportedOperationException(); } return this.dialect; } /** * * @param v
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
this.dialects = new int[dvs.size()]; int i = 0; for ( DialectVersion ver : dvs ) { this.dialects[ i ] = ver.getDialect(); i++; } if ( config.getMaximumVersion().atLeast(DialectVersion.SMB210) ) { System.arraycopy(config.getMachineId(), 0, this.clientGuid, 0, this.clientGuid.length); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
if ( nego.getSecurityMode() != out.getSecurityMode() || nego.getCapabilities() != out.getCapabilities() || nego.getDialectRevision() != out.getDialect() || !Arrays.equals(nego.getServerGuid(), out.getServerGuid()) ) { log.debug("Secure negotiation failure"); throw new CIFSException("Mismatched attributes validating negotiate info"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 29.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0)