1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00

Cedar/VLanUnix: add description to FreeBSD tap device

$ ifconfig vpn_client
vpn_client: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
        description: SoftEther Virtual Network Adapter
        options=80000<LINKSTATE>
        ether 5e:51:5e:48:ea:ef
        hwaddr 58:9c:fc:10:34:2a
        groups: tap
        media: Ethernet autoselect
        status: active
        nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
        Opened by PID 35981
This commit is contained in:
Koichiro IWAO 2023-06-01 15:10:42 +09:00
parent 867c992111
commit 96e4fc040f

View File

@ -470,6 +470,17 @@ int UnixCreateTapDeviceEx(char *name, char *prefix, UCHAR *mac_address, bool cre
ioctl(s, SIOCSIFLLADDR, &ifr);
}
// Set interface description
#ifdef SIOCSIFDESCR
{
char desc[] = CEDAR_PRODUCT_STR " Virtual Network Adapter";
ifr.ifr_buffer.buffer = desc;
ifr.ifr_buffer.length = StrLen(desc) + 1;
ioctl(s, SIOCSIFDESCR, &ifr);
}
#endif
if (create_up)
{
Zero(&ifr, sizeof(ifr));