public SmbFindNotifyCloseResponsePacket CreateFindNotifyCloseResponse( CifsServerPerConnection connection, SmbFindNotifyCloseRequestPacket request) { SmbFindNotifyCloseResponsePacket response = new SmbFindNotifyCloseResponsePacket(); SmbHeader smbHeader = CifsMessageUtils.CreateSmbHeader(connection, request); if ((smbHeader.Flags2 & SmbFlags2.SMB_FLAGS2_NT_STATUS) == SmbFlags2.SMB_FLAGS2_NT_STATUS) { smbHeader.Status = (uint)NtStatus.STATUS_NOT_IMPLEMENTED; } else { SmbStatus smbStatus = new SmbStatus(); smbStatus.ErrorClass = SmbErrorClass.ERRDOS; smbStatus.Reserved = 0; smbStatus.ErrorCode = (ushort)SmbErrorCodeOfERRDOS.ERRbadfunc; smbHeader.Status = smbStatus; } response.SmbHeader = smbHeader; return response; }
/// <summary> /// Deep copy constructor. /// </summary> public SmbFindNotifyCloseResponsePacket(SmbFindNotifyCloseResponsePacket packet) : base(packet) { this.InitDefaultValue(); }