summaryrefslogtreecommitdiffstats
path: root/src/network/netdev/tuntap.h
blob: 88e0ce5f97047c1f0185d3eda36411f13ea487d6 (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
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#pragma once

typedef struct TunTap TunTap;

#include "netdev.h"

struct TunTap {
        NetDev meta;

        int fd;
        char *user_name;
        char *group_name;
        bool multi_queue;
        bool packet_info;
        bool vnet_hdr;
        bool keep_fd;
};

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

int manager_add_tuntap_fd(Manager *m, int fd, const char *name);
void manager_clear_unmanaged_tuntap_fds(Manager *m);