summaryrefslogtreecommitdiff
path: root/src/network/netdev/dummy.c
blob: 26f58a52a662ec2ced58bacd564ffe71e0d10a06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: LGPL-2.1+ */
/***
  This file is part of systemd.

  Copyright 2014 Susant Sahani <susant@redhat.com>
  Copyright 2014 Tom Gundersen
***/

#include "netdev/dummy.h"

const NetDevVTable dummy_vtable = {
        .object_size = sizeof(Dummy),
        .sections = "Match\0NetDev\0",
        .create_type = NETDEV_CREATE_INDEPENDENT,
};