OpenVAS Scanner 23.23.1
user_agent.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_USERAGENT_H
12#define MISC_USERAGENT_H
13
14#include "ipc.h"
15
16#include <glib.h>
17
18int
19user_agent_get (struct ipc_context *, char **);
20
21gchar *
22user_agent_set (const gchar *);
23
24#endif /* not MISC_USERAGENT_H */
Definition ipc.h:32
gchar * user_agent_set(const gchar *)
Set user-agent.
Definition user_agent.c:89
int user_agent_get(struct ipc_context *, char **)
Get user-agent.
Definition user_agent.c:114