]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/bpipe.h
Ignore UTF-8 marker at the start of .conf files.
[bacula/bacula] / bacula / src / lib / bpipe.h
1 /*
2  *   Bi-directional pipe structure
3  *
4  *   Version $Id$
5  */
6
7 /*
8    Copyright (C) 2002-2006 Kern Sibbald
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License
12    version 2 as amended with additional clauses defined in the
13    file LICENSE in the main source directory.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
18    the file LICENSE for additional details.
19
20  */
21
22 class BPIPE {
23 public:
24    pid_t worker_pid;
25    time_t worker_stime;
26    int wait;
27    btimer_t *timer_id;
28    FILE *rfd;
29    FILE *wfd;
30 };