mirror of
https://github.com/systemd/systemd.git
synced 2026-07-15 20:10:58 +00:00
14 lines
330 B
C
14 lines
330 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#include <linux/if_arp.h>
|
|
|
|
#include "dummy.h"
|
|
|
|
const NetDevVTable dummy_vtable = {
|
|
.object_size = sizeof(Dummy),
|
|
.sections = NETDEV_COMMON_SECTIONS,
|
|
.create_type = NETDEV_CREATE_INDEPENDENT,
|
|
.iftype = ARPHRD_ETHER,
|
|
.generate_mac = true,
|
|
};
|