- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for dialectIndex (0.1 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/SmbComNegotiateResponse.java
return 0; } int readParameterWordsWireFormat( byte[] buffer, int bufferIndex ) { int start = bufferIndex; dialectIndex = readInt2( buffer, bufferIndex ); bufferIndex += 2; if( dialectIndex > 10 ) { return bufferIndex - start; } server.securityMode = buffer[bufferIndex++] & 0xFF; server.security = server.securityMode & 0x01;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.1K 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)