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