Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/gvmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
#include "manage_runtime_flags.h"
#include "manage_roles.h"
#include "manage_scan_queue.h"
#include "manage_users.h"
#include "gmpd.h"
#include "utils.h"

Expand Down
35 changes: 1 addition & 34 deletions src/manage.h
Original file line number Diff line number Diff line change
Expand Up @@ -3191,40 +3191,7 @@ char *
manage_default_ca_cert ();


/* Users. */

int
manage_create_user (GSList *, const db_conn_info_t *, const gchar *,
const gchar *, const gchar *);

int
manage_delete_user (GSList *, const db_conn_info_t *, const gchar *,
const gchar *);

int
manage_get_users (GSList *, const db_conn_info_t *, const gchar *, int);

int
manage_set_password (GSList *, const db_conn_info_t *, const gchar *,
const gchar *);

gchar *
manage_user_hash (const gchar *);

int
copy_user (const char*, const char*, const char*, user_t*);

gchar *
keyfile_to_auth_conf_settings_xml (const gchar *);

int
modify_user (const gchar *, gchar **, const gchar *, const gchar *,
const gchar*, const gchar *, int,
const array_t *, array_t *, gchar **, array_t *, gchar **,
gchar **);

int
user_count (const get_data_t*);
/* Vulns. */

int
init_vuln_iterator (iterator_t*, const get_data_t*);
Expand Down
Loading
Loading