summaryrefslogtreecommitdiff
path: root/src/network/netdev/tuntap.h
blob: 14ebcdc34fee6a89d63265b8cca2a4f0b5b38163 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once

/***
  This file is part of systemd.

  Copyright 2014 Tom Gundersen <teg@jklm.no>
***/

typedef struct TunTap TunTap;

#include "netdev/netdev.h"

struct TunTap {
        NetDev meta;

        char *user_name;
        char *group_name;
        bool one_queue;
        bool multi_queue;
        bool packet_info;
        bool vnet_hdr;
};

DEFINE_NETDEV_CAST(TUN, TunTap);
DEFINE_NETDEV_CAST(TAP, TunTap);
extern const NetDevVTable tun_vtable;
extern const NetDevVTable tap_vtable;