mirror of
https://github.com/systemd/systemd.git
synced 2026-07-22 23:41:12 +00:00
13 lines
295 B
C
13 lines
295 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#include <linux/if_arp.h>
|
|
|
|
#include "vcan.h"
|
|
|
|
const NetDevVTable vcan_vtable = {
|
|
.object_size = sizeof(VCan),
|
|
.sections = NETDEV_COMMON_SECTIONS,
|
|
.create_type = NETDEV_CREATE_INDEPENDENT,
|
|
.iftype = ARPHRD_CAN,
|
|
};
|