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