Systemd/src/network/netdev/dummy.h

12 lines
204 B
C
Raw Normal View History

/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
2019-10-30 09:02:15 +01:00
#include "netdev.h"
typedef struct Dummy {
NetDev meta;
} Dummy;
DEFINE_NETDEV_CAST(DUMMY, Dummy);
extern const NetDevVTable dummy_vtable;