Greenbone Vulnerability Manager 22.5.2
gmp_logout.h
1/* Copyright (C) 2021-2022 Greenbone AG
2 *
3 * SPDX-License-Identifier: AGPL-3.0-or-later
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as
7 * published by the Free Software Foundation, either version 3 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#include "gmp_base.h"
20
21#include <glib.h>
22#include <gvm/util/xmlutils.h>
23
24void
26 const gchar **,
27 const gchar **);
28
29void
30logout_element_start (gmp_parser_t *, const gchar *,
31 const gchar **, const gchar **);
32
33int
34logout_element_end (gmp_parser_t *, GError **, const gchar *);
void logout_element_start(gmp_parser_t *gmp_parser, const gchar *name, const gchar **attribute_names, const gchar **attribute_values)
Start element.
Definition: gmp_logout.c:78
int logout_element_end(gmp_parser_t *gmp_parser, GError **error, const gchar *name)
End element.
Definition: gmp_logout.c:112
void logout_start(gmp_parser_t *gmp_parser, const gchar **attribute_names, const gchar **attribute_values)
Start a command.
Definition: gmp_logout.c:59
A handle on a GMP parser.
Definition: gmp_base.h:28