From 96b1961d7874ae0de5e5e4ec1fd88bd7e01b0b1a Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Thu, 1 Jun 2023 11:57:50 +0900 Subject: [PATCH] Cedar/VLanUnix: add UnixDestroyTapDevice prototype declaration --- src/Cedar/VLanUnix.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Cedar/VLanUnix.h b/src/Cedar/VLanUnix.h index 6bd5f44a..714b746a 100644 --- a/src/Cedar/VLanUnix.h +++ b/src/Cedar/VLanUnix.h @@ -60,6 +60,7 @@ struct UNIX_VLAN_LIST int UnixCreateTapDevice(char *name, UCHAR *mac_address, bool create_up); int UnixCreateTapDeviceEx(char *name, char *prefix, UCHAR *mac_address, bool create_up); void UnixCloseTapDevice(int fd); +void UnixDestroyTapDevice(char *name); void UnixVLanInit(); void UnixVLanFree(); bool UnixVLanCreate(char *name, UCHAR *mac_address, bool create_up);