- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getDialects (0.14 sec)
-
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
/** * @return the capabilities */ public int getCapabilities () { return this.capabilities; } /** * @return the dialects */ public int[] getDialects () { return this.dialects; } /** * @return the clientGuid */ public byte[] getClientGuid () { return this.clientGuid; } /**
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
new ValidateNegotiateInfoRequest( negoReq.getCapabilities(), negoReq.getClientGuid(), (short) negoReq.getSecurityMode(), negoReq.getDialects())); Smb2IoctlResponse resp; try { resp = send(req, RequestParam.NO_RETRY); } catch ( SMBSignatureValidationException e ) {
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/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/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)