bump version
[prads.git] / src / output-plugins / log_file.h
blob25407670bb822edcac7b23885731168fe49d57e6
1 /*
2 ** This file is a part of PRADS.
3 **
4 ** Copyright (C) 2009, Redpill Linpro
5 ** Copyright (C) 2009, Edward Fjellskål <edward.fjellskaal@redpill-linpro.com>
6 **
7 ** This program is free software; you can redistribute it and/or modify
8 ** it under the terms of the GNU General Public License as published by
9 ** the Free Software Foundation; either version 2 of the License, or
10 ** (at your option) any later version.
12 ** This program is distributed in the hope that it will be useful,
13 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ** GNU General Public License for more details.
17 ** You should have received a copy of the GNU General Public License
18 ** along with this program; if not, write to the Free Software
19 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 /* I N C L U D E S *********************************************************/
24 #include "../prads.h"
25 #include "../sys_func.h"
26 #include "../sig.h"
27 //#include "../ipfp/ipfp.h"
28 #include "log_init.h"
29 #include <stdio.h>
31 /* D A T A S T R U C T U R E S *********************************************/
32 typedef struct _log_file_conf
34 FILE *file; /* File Reference */
35 bstring filename; /* File's OS name */
36 } log_file_conf;
38 /* P R O T O T Y P E S ******************************************************/
39 int init_output_log_file (bstring filename);
40 void read_report_file (void);
41 int parse_raw_report (bstring line);
42 void file_os(asset *main, os_asset *os);
43 void file_service(asset *main, serv_asset *service);
44 void file_arp(asset *main);
45 int end_output_log_file (void);