summaryrefslogtreecommitdiff
path: root/src/network/netdev/dummy.c
blob: 7361d34c0c8b9501165f7083e2e26298f7039c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: LGPL-2.1+ */
/***
  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,
};