mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
As suggested in https://github.com/systemd/systemd/pull/11484#issuecomment-775288617. This does not touch anything exposed in src/systemd. Changing the defines there would be a compatibility break. Note that tests are broken after this commit. They will be fixed in the next one.
18 lines
627 B
C
18 lines
627 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <linux/if_link.h>
|
|
|
|
typedef enum MacVlanMode {
|
|
NETDEV_MACVLAN_MODE_PRIVATE = MACVLAN_MODE_PRIVATE,
|
|
NETDEV_MACVLAN_MODE_VEPA = MACVLAN_MODE_VEPA,
|
|
NETDEV_MACVLAN_MODE_BRIDGE = MACVLAN_MODE_BRIDGE,
|
|
NETDEV_MACVLAN_MODE_PASSTHRU = MACVLAN_MODE_PASSTHRU,
|
|
NETDEV_MACVLAN_MODE_SOURCE = MACVLAN_MODE_SOURCE,
|
|
_NETDEV_MACVLAN_MODE_MAX,
|
|
_NETDEV_MACVLAN_MODE_INVALID = -EINVAL,
|
|
} MacVlanMode;
|
|
|
|
const char *macvlan_mode_to_string(MacVlanMode d) _const_;
|
|
MacVlanMode macvlan_mode_from_string(const char *d) _pure_;
|