- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for DurableHandleV2Response (0.13 seconds)
-
src/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Response.java
import jcifs.internal.smb2.create.CreateContextResponse; import jcifs.internal.util.SMBUtil; /** * SMB2 Durable Handle V2 Response Create Context * * MS-SMB2 Section 2.2.14.2.4 */ public class DurableHandleV2Response implements CreateContextResponse { /** * Context name for durable handle V2 response */ public static final String CONTEXT_NAME = "DH2Q";Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
*/ public jcifs.internal.smb2.persistent.DurableHandleV2Response getDurableHandleV2Response() { if (this.createContexts != null) { for (CreateContextResponse ctx : this.createContexts) { if (ctx instanceof jcifs.internal.smb2.persistent.DurableHandleV2Response) { return (jcifs.internal.smb2.persistent.DurableHandleV2Response) ctx; } } }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 15.4K bytes - Click Count (0)