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