mirror of
https://github.com/systemd/systemd.git
synced 2026-07-15 03:50:44 +00:00
15 lines
382 B
C
15 lines
382 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
* Copyright © 2019 VMware, Inc. */
|
|
|
|
#include <linux/if_arp.h>
|
|
|
|
#include "ifb.h"
|
|
|
|
const NetDevVTable ifb_vtable = {
|
|
.object_size = sizeof(IntermediateFunctionalBlock),
|
|
.sections = NETDEV_COMMON_SECTIONS,
|
|
.create_type = NETDEV_CREATE_INDEPENDENT,
|
|
.iftype = ARPHRD_ETHER,
|
|
.generate_mac = true,
|
|
};
|