1 /*
2    BAREOS® - Backup Archiving REcovery Open Sourced
3 
4    Copyright (C) 2000-2012 Free Software Foundation Europe e.V.
5    Copyright (C) 2011-2012 Planets Communications B.V.
6    Copyright (C) 2013-2020 Bareos GmbH & Co. KG
7 
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version three of the GNU Affero General Public
10    License as published by the Free Software Foundation and included
11    in the file LICENSE.
12 
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16    Affero General Public License for more details.
17 
18    You should have received a copy of the GNU Affero General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22 */
23 #ifndef BAREOS_SRC_STORED_DEVICE_STATUS_INFORMATION_H_
24 #define BAREOS_SRC_STORED_DEVICE_STATUS_INFORMATION_H_
25 
26 #include "include/bareos.h"
27 
28 namespace storagedaemon {
29 
30 class DeviceResource;
31 
32 /**
33  * Device specific status information returned via Device::DeviceStatus()
34  * method via bsdEventDriveStatus and bsdEventVolumeStatus plugin events.
35  */
36 struct DeviceStatusInformation {
37   DeviceResource* device_resource = nullptr;
38   POOLMEM* status = nullptr;
39   int status_length = 0;
40 };
41 
42 }  // namespace storagedaemon
43 #endif  // BAREOS_SRC_STORED_DEVICE_STATUS_INFORMATION_H_
44