OpenVAS Scanner 23.23.1
table_driven_lsc.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2023 Greenbone AG
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later
4 */
5
10
11#ifndef MISC_TABLE_DRIVEN_LSC_H
12#define MISC_TABLE_DRIVEN_LSC_H
13
14#include <glib.h>
15#include <gvm/util/kb.h> // for kb_t
16
17void
18set_lsc_flag (void);
19
20int
21lsc_has_run (void);
22
23int
24run_table_driven_lsc (const char *, const char *, const char *, const char *,
25 const char *);
26
27#endif // MISC_TABLE_DRIVEN_LSC_H
int run_table_driven_lsc(const char *, const char *, const char *, const char *, const char *)
Publish the necessary data to start a Table driven LSC scan.
Definition table_driven_lsc.c:1122
int lsc_has_run(void)
Get lsc_flag value.
Definition table_driven_lsc.c:48
void set_lsc_flag(void)
Set lsc_flag to 1.
Definition table_driven_lsc.c:40