summaryrefslogtreecommitdiff
path: root/src/network/netdev/nlmon.h
blob: b5f65f6140d88215857f76efd4e4efe81a4b12b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once

typedef struct NLMon NLMon;

#include "netdev.h"

struct NLMon {
        NetDev meta;
};

DEFINE_NETDEV_CAST(NLMON, NLMon);

extern const NetDevVTable nlmon_vtable;