mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
14 lines
342 B
C
14 lines
342 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#include <linux/if_arp.h>
|
|
|
|
#include "netdevsim.h"
|
|
|
|
const NetDevVTable netdevsim_vtable = {
|
|
.object_size = sizeof(NetDevSim),
|
|
.sections = NETDEV_COMMON_SECTIONS,
|
|
.create_type = NETDEV_CREATE_INDEPENDENT,
|
|
.iftype = ARPHRD_ETHER,
|
|
.generate_mac = true,
|
|
};
|