- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for Smb2NegotiateRequest (0.11 sec)
-
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
import jcifs.internal.smb2.ServerMessageBlock2Request; import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /** * @author mbechler * */ public class Smb2NegotiateRequest extends ServerMessageBlock2Request<Smb2NegotiateResponse> implements SmbNegotiationRequest { private int[] dialects; private int capabilities; private byte[] clientGuid = new byte[16];
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/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) -
src/main/java/jcifs/smb/SmbTreeImpl.java
// have preauth integrity instead log.debug("Secure negotiation does not apply, is SMB3.1"); return; } Smb2NegotiateRequest negoReq = new Smb2NegotiateRequest(sess.getConfig(), trans.getRequestSecurityMode(nego)); log.debug("Sending VALIDATE_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/smb/SmbTransportImpl.java
int size = 0; int securityMode = getRequestSecurityMode(first); // further negotiation needed Smb2NegotiateRequest smb2neg = new Smb2NegotiateRequest(getContext().getConfig(), securityMode); Smb2NegotiateResponse r = null; byte[] negoReqBuffer = null; byte[] negoRespBuffer = null; try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)