Branch data Line data Source code
1 : : /* SPDX-License-Identifier: LGPL-2.1+ */ 2 : : #pragma once 3 : : 4 : : #include "netdev/netdev.h" 5 : : 6 : : typedef struct Xfrm { 7 : : NetDev meta; 8 : : 9 : : uint32_t if_id; 10 : : bool independent; 11 : : } Xfrm; 12 : : 13 [ # # # # : 0 : DEFINE_NETDEV_CAST(XFRM, Xfrm); # # ] 14 : : extern const NetDevVTable xfrm_vtable;