]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/network/netdev/dummy.c
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / network / netdev / dummy.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
9e358851
TG
2/***
3 This file is part of systemd.
4
5 Copyright 2014 Susant Sahani <susant@redhat.com>
6 Copyright 2014 Tom Gundersen
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
9e358851 22
441e9ae4 23#include "netdev/dummy.h"
9e358851 24
3be1d7e0 25const NetDevVTable dummy_vtable = {
aa9f1140
TG
26 .object_size = sizeof(Dummy),
27 .sections = "Match\0NetDev\0",
28 .create_type = NETDEV_CREATE_INDEPENDENT,
3be1d7e0 29};