- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getDialects (0.06 seconds)
-
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
return this.capabilities; } /** * Gets the array of SMB dialect versions supported by the client. * * @return the dialects */ public int[] getDialects() { return this.dialects; } /** * Gets the client GUID used for identification. * * @return the clientGuid */ public byte[] getClientGuid() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 9.3K bytes - Click Count (0) -
src/test/java/jcifs/DialectVersionTest.java
DialectVersion.SMB1.getDialect(); }); // SMB2+ versions should have valid dialect codes assertTrue(DialectVersion.SMB202.getDialect() > 0); assertTrue(DialectVersion.SMB210.getDialect() > 0); assertTrue(DialectVersion.SMB300.getDialect() > 0); assertTrue(DialectVersion.SMB302.getDialect() > 0); assertTrue(DialectVersion.SMB311.getDialect() > 0);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 7.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java
return this.securityMode; } /** * Gets the negotiated SMB dialect * * @return the SMB dialect negotiated with the server */ public int getDialect() { return this.dialect; } /** * {@inheritDoc} * * @see jcifs.Decodable#decode(byte[], int, int) */ @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/jcifs/DialectVersion.java
*/ public final boolean isSMB2() { return this.smb2; } /** * Get the SMB2 dialect identifier * * @return the dialect */ public final int getDialect() { if (!this.smb2) { throw new UnsupportedOperationException(); } return this.dialect; } /** * Check if this dialect version is at least the specified versionCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.3K bytes - Click Count (0)