/* SPDX-License-Identifier: GPL-2.0-or-later * Copyright (c) 2021 Red Hat GmbH * Author: Stefano Brivio */ #ifndef TAP_HDR_H #define TAP_HDR_H #include #include /** * struct tap_hdr - tap backend specific headers * @vnet_len: Frame length (for qemu socket transport) */ struct tap_hdr { union { uint32_t vnet_len; struct virtio_net_hdr_mrg_rxbuf hdr; }; }; #endif /* TAP_HDR_H */