1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-09-22 11:19:35 +03:00

Cedar: Don't hardcode prefix for virtual brige destination

This commit is contained in:
Koichiro IWAO
2023-06-02 18:01:23 +09:00
parent 1c0bdb0c30
commit 696a9bc0a1
4 changed files with 9 additions and 7 deletions

View File

@ -321,7 +321,7 @@ TOKEN_LIST *GetEthListLinux(bool enum_normal, bool enum_rawip)
{
if (IsInListStr(o, name) == false)
{
if (StartWith(name, "tap_") == false)
if (StartWith(name, UNIX_VLAN_BRDEST_IFACE_PREFIX"_") == false)
{
Add(o, CopyStr(name));
}