mirror of
https://passt.top/passt
synced 2025-05-30 04:45:34 +02:00

One of the first things we need to do is determine if we're in passt mode or pasta mode. Currently this is open-coded in main(), by examining argv[0]. We want to complexify this a bit in future to cover vhost-user mode as well. Prepare for this, by moving the mode detection into a new conf_mode() function. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
12 lines
285 B
C
12 lines
285 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright (c) 2021 Red Hat GmbH
|
|
* Author: Stefano Brivio <sbrivio@redhat.com>
|
|
*/
|
|
|
|
#ifndef CONF_H
|
|
#define CONF_H
|
|
|
|
enum passt_modes conf_mode(int argc, char *argv[]);
|
|
void conf(struct ctx *c, int argc, char **argv);
|
|
|
|
#endif /* CONF_H */
|