]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/status.h
kes Refactor FD and SD status commands to permit new API code in
[bacula/bacula] / bacula / src / lib / status.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2008-2008 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from
7    many others, a complete list can be found in the file AUTHORS.
8    This program is Free Software; you can redistribute it and/or
9    modify it under the terms of version two of the GNU 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    General Public License for more details.
17
18    You should have received a copy of the GNU 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    Bacula® is a registered trademark of John Walker.
24    The licensor of Bacula is the Free Software Foundation Europe
25    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26    Switzerland, email:ftf@fsfeurope.org.
27 */
28 /*
29  *  Status packet definition that is used in both the SD and FD. It 
30  *    permits Win32 to call output_status() and get the output back
31  *    at the callback address line by line, and for Linux code,
32  *    the output can be sent directly to a BSOCK.
33  *
34  *     Kern Sibbald, March MMVII
35  *
36  *   Version $Id: $
37  *
38  */
39
40 #ifndef __STATUS_H_
41 #define __STATUS_H_
42
43 /*
44  * Packet to send to output_status()
45  */
46 class STATUS_PKT {
47 public:
48   BSOCK *bs;                       /* used on Unix machines */
49   void *context;                   /* Win32 */
50   void (*callback)(const char *msg, int len, void *context);  /* Win32 */
51 };
52
53 extern void output_status(STATUS_PKT *sp);
54
55
56 #endif