Home
last modified time | relevance | path

Searched refs:hostInterfaceName (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/HostInterfaces/Network/
DTapExtensions.cs19 …atic IMACInterface CreateAndGetTap(this Emulation emulation, string hostInterfaceName, string name… in CreateAndGetTap() argument
23 result = new WindowsTapInterface(hostInterfaceName); in CreateAndGetTap()
29 result = new OsXTapInterface(hostInterfaceName); in CreateAndGetTap()
31 result = new LinuxTapInterface(hostInterfaceName, persistent); in CreateAndGetTap()
38 …public static void CreateTap(this Emulation emulation, string hostInterfaceName, string name, bool… in CreateTap() argument
40 CreateAndGetTap(emulation, hostInterfaceName, name, persistent); in CreateTap()