1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-06 15:54:57 +03:00

Add string for "IF_TYPE_PROP_VIRTUAL" network interface type

This commit is contained in:
Davide Beatrici
2018-10-03 09:10:27 +02:00
parent c5c1403f46
commit e02237f397
7 changed files with 10 additions and 0 deletions

View File

@ -3119,6 +3119,10 @@ wchar_t *MsGetAdapterTypeStr(UINT type)
switch (type)
{
case IF_TYPE_PROP_VIRTUAL:
ret = _UU("MS_VIRTUAL");
break;
case MIB_IF_TYPE_ETHERNET:
ret = _UU("MS_ETHERNET");
break;