1 /* SPDX-License-Identifier: LGPL-2.1-or-later */ 2 #pragma once 3 4 typedef struct NLMon NLMon; 5 6 #include "netdev.h" 7 8 struct NLMon { 9 NetDev meta; 10 }; 11 12 DEFINE_NETDEV_CAST(NLMON, NLMon); 13 14 extern const NetDevVTable nlmon_vtable; 15