summaryrefslogtreecommitdiff
path: root/src/network/netdev/netdevsim.c
blob: 9fd31a0465b8f81718942e085f435115cf4504d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: LGPL-2.1+ */
/***
  Copyright 2018 Susant Sahani
***/

#include "netdev/netdevsim.h"
#include "missing.h"

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