Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ValidateNegotiateInfoResponse (0.12 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java

     * validation of the originally negotiated SMB2 dialect.
     *
     * @author mbechler
     *
     */
    public class ValidateNegotiateInfoResponse implements Decodable {
    
        /**
         * Default constructor for ValidateNegotiateInfoResponse
         */
        public ValidateNegotiateInfoResponse() {
            // Default constructor
        }
    
        private int capabilities;
        private final byte[] serverGuid = new byte[16];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

            case Smb2IoctlRequest.FSCTL_SRV_COPYCHUNK_WRITE:
                return new SrvCopyChunkCopyResponse();
            case Smb2IoctlRequest.FSCTL_VALIDATE_NEGOTIATE_INFO:
                return new ValidateNegotiateInfoResponse();
            case Smb2IoctlRequest.FSCTL_PIPE_PEEK:
                return new SrvPipePeekResponse();
            }
            return null;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top