blob: badfb4ad1076ad29922d48cdb75b8a99b4d1fa9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: LGPL-2.1-or-later
* Copyright © 2019 VMware, Inc. */
#pragma once
#include "netdev.h"
typedef struct IntermediateFunctionalBlock {
NetDev meta;
} IntermediateFunctionalBlock;
DEFINE_NETDEV_CAST(IFB, IntermediateFunctionalBlock);
extern const NetDevVTable ifb_vtable;
|