~ubuntu-branches/ubuntu/jaunty/openvas-server/jaunty

« back to all changes in this revision

Viewing changes to openvasd/detached.h

  • Committer: Bazaar Package Importer
  • Author(s): Javier Fernandez-Sanguino Pen~a
  • Date: 2009-01-02 01:38:47 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090102013847-74xy2uo1e3hovqjo
Tags: 2.0.0-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* OpenVAS
2
 
* $Id $
3
 
* Description: detached.c header. 
4
 
*
5
 
* Authors: - Renaud Deraison <deraison@nessus.org> (Original pre-fork develoment)
6
 
*          - Tim Brown <mailto:timb@openvas.org> (Initial fork)
7
 
*          - Laban Mwangi <mailto:labanm@openvas.org> (Renaming work)
8
 
*          - Tarik El-Yassem <mailto:tarik@openvas.org> (Headers section)
9
 
*
10
 
* Copyright:
11
 
* Portions Copyright (C) 2006 Software in the Public Interest, Inc.
12
 
* Based on work Copyright (C) 1998 - 2006 Tenable Network Security, Inc.
13
 
*
14
 
* This program is free software; you can redistribute it and/or modify
15
 
* it under the terms of the GNU General Public License version 2,
16
 
* as published by the Free Software Foundation
17
 
*
18
 
* This program is distributed in the hope that it will be useful,
19
 
* but WITHOUT ANY WARRANTY; without even the implied warranty of
20
 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
 
* GNU General Public License for more details.
22
 
*
23
 
* You should have received a copy of the GNU General Public License
24
 
* along with this program; if not, write to the Free Software
25
 
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
26
 
*
27
 
*
28
 
*/
29
 
 
30
 
 
31
 
#ifndef NESSUSD_DETACHED_H__
32
 
#define NESSUSD_DETACHED_H__
33
 
 
34
 
#ifdef ENABLE_SAVE_KB
35
 
int  detached_setup_mail_file(struct arglist*, char*);
36
 
void detached_copy_data(struct arglist*, char*, int);
37
 
void detached_send_email(struct arglist*);
38
 
 
39
 
 
40
 
int detached_new_session(struct arglist *, char *);
41
 
int detached_end_session(struct arglist *);
42
 
int detached_delete_session(struct arglist *, int);
43
 
 
44
 
int detached_send_sessions(struct arglist *);
45
 
#endif
46
 
#endif