2021-10-19 12:43:28 +02:00
|
|
|
/* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
|
|
*/
|
|
|
|
|
2022-03-26 00:05:31 +01:00
|
|
|
#ifndef CONF_H
|
|
|
|
#define CONF_H
|
|
|
|
|
2021-08-12 15:42:43 +02:00
|
|
|
void conf(struct ctx *c, int argc, char **argv);
|
2021-09-27 05:24:30 +02:00
|
|
|
void get_bound_ports(struct ctx *c, int ns, uint8_t proto);
|
2022-03-26 00:05:31 +01:00
|
|
|
|
|
|
|
#endif /* CONF_H */
|