- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for dialectIndex (0.09 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
public boolean canReuse ( CIFSContext tc, boolean forceSigning ) { return this.getConfig().equals(tc.getConfig()); } /** * @return the dialectIndex */ public int getDialectIndex () { return this.dialectIndex; } /** * @return the negotiated capbilities */ public int getNegotiatedCapabilities () { return this.capabilities;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 15.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
int altPort = (port == 0 || port == DEFAULT_PORT) ? 139 : DEFAULT_PORT; negotiate( altPort, resp ); port = altPort; } if( resp.dialectIndex > 10 ) { throw new SmbException( "This client does not support the negotiated dialect." ); } if ((server.capabilities & CAP_EXTENDED_SECURITY) != CAP_EXTENDED_SECURITY &&
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0)