mirror of
https://github.com/luscis/openlan.git
synced 2025-10-07 01:22:51 +08:00
20 lines
395 B
C
20 lines
395 B
C
/*
|
|
* Copyright (c) 2021-2022 OpenLAN Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 3 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
*/
|
|
|
|
#ifndef CORE_TUNTAP_H
|
|
#define CORE_TUNTAP_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#define DEV_NET_TUN "/dev/net/tun"
|
|
|
|
int create_tap(char *name);
|
|
|
|
#endif //CORE_TUNTAP_H
|