OpenVAS Manager
7.0.3~git
|
#include "manage_utils.h"
#include "postgres.h"
#include "fmgr.h"
#include "executor/spi.h"
#include "glib.h"
Go to the source code of this file.
Functions | |
PG_FUNCTION_INFO_V1 (sql_next_time) | |
Datum | sql_next_time (PG_FUNCTION_ARGS) |
Get the next time given schedule times. More... | |
PG_FUNCTION_INFO_V1 (sql_max_hosts) | |
Datum | sql_max_hosts (PG_FUNCTION_ARGS) |
Return number of hosts. More... | |
PG_FUNCTION_INFO_V1 (sql_level_min_severity) | |
Datum | sql_level_min_severity (PG_FUNCTION_ARGS) |
Return min severity of level. More... | |
PG_FUNCTION_INFO_V1 (sql_level_max_severity) | |
Datum | sql_level_max_severity (PG_FUNCTION_ARGS) |
Return max severity of level. More... | |
PG_FUNCTION_INFO_V1 (sql_severity_matches_ov) | |
Datum | sql_severity_matches_ov (PG_FUNCTION_ARGS) |
Return max severity of level. More... | |
PG_FUNCTION_INFO_V1 (sql_valid_db_resource_type) | |
Datum | sql_valid_db_resource_type (PG_FUNCTION_ARGS) |
Return max severity of level. More... | |
PG_FUNCTION_INFO_V1 (sql_regexp) | |
Datum | sql_regexp (PG_FUNCTION_ARGS) |
Return if argument 1 matches regular expression in argument 2. More... | |
PG_FUNCTION_INFO_V1 | ( | sql_next_time | ) |
PG_FUNCTION_INFO_V1 | ( | sql_max_hosts | ) |
PG_FUNCTION_INFO_V1 | ( | sql_level_min_severity | ) |
PG_FUNCTION_INFO_V1 | ( | sql_level_max_severity | ) |
PG_FUNCTION_INFO_V1 | ( | sql_severity_matches_ov | ) |
PG_FUNCTION_INFO_V1 | ( | sql_valid_db_resource_type | ) |
PG_FUNCTION_INFO_V1 | ( | sql_regexp | ) |
Datum sql_level_max_severity | ( | PG_FUNCTION_ARGS | ) |
Return max severity of level.
This is a callback for a SQL function of two arguments.
Definition at line 189 of file manage_pg_server.c.
Datum sql_level_min_severity | ( | PG_FUNCTION_ARGS | ) |
Return min severity of level.
This is a callback for a SQL function of two arguments.
Definition at line 157 of file manage_pg_server.c.
Datum sql_max_hosts | ( | PG_FUNCTION_ARGS | ) |
Return number of hosts.
This is a callback for a SQL function of two arguments.
Definition at line 100 of file manage_pg_server.c.
Datum sql_next_time | ( | PG_FUNCTION_ARGS | ) |
Get the next time given schedule times.
This is a callback for a SQL function of three to five arguments.
Definition at line 61 of file manage_pg_server.c.
Datum sql_regexp | ( | PG_FUNCTION_ARGS | ) |
Return if argument 1 matches regular expression in argument 2.
This is a callback for a SQL function of two arguments.
Definition at line 276 of file manage_pg_server.c.
Datum sql_severity_matches_ov | ( | PG_FUNCTION_ARGS | ) |
Return max severity of level.
This is a callback for a SQL function of one argument.
Definition at line 221 of file manage_pg_server.c.
Datum sql_valid_db_resource_type | ( | PG_FUNCTION_ARGS | ) |
Return max severity of level.
This is a callback for a SQL function of one argument.
Definition at line 248 of file manage_pg_server.c.