Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DurableHandleResponse (0.1 sec)

  1. src/main/java/jcifs/internal/smb2/persistent/DurableHandleResponse.java

    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.smb2.create.CreateContextResponse;
    
    /**
     * SMB2 Durable Handle Response Create Context
     *
     * MS-SMB2 Section 2.2.14.2.3
     */
    public class DurableHandleResponse implements CreateContextResponse {
    
        /**
         * Context name for durable handle response
         */
        public static final String CONTEXT_NAME = "DHnQ";
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

         */
        public jcifs.internal.smb2.persistent.DurableHandleResponse getDurableHandleResponse() {
            if (this.createContexts != null) {
                for (CreateContextResponse ctx : this.createContexts) {
                    if (ctx instanceof jcifs.internal.smb2.persistent.DurableHandleResponse) {
                        return (jcifs.internal.smb2.persistent.DurableHandleResponse) ctx;
                    }
                }
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 15.4K bytes
    - Viewed (0)
Back to top