]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/network/netdev/netdevsim.c
tree-wide: drop 'This file is part of systemd' blurb
[thirdparty/systemd.git] / src / network / netdev / netdevsim.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3 Copyright 2018 Susant Sahani
4 ***/
5
6 #include "netdev/netdevsim.h"
7 #include "missing.h"
8
9 const NetDevVTable netdevsim_vtable = {
10 .object_size = sizeof(NetDevSim),
11 .sections = "Match\0NetDev\0",
12 .create_type = NETDEV_CREATE_INDEPENDENT,
13 };