26 lines
741 B
C#
26 lines
741 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace System.Net.NetworkInformation
|
|
{
|
|
// Token: 0x02000170 RID: 368
|
|
internal class LinuxIPInterfaceProperties : UnixIPInterfaceProperties
|
|
{
|
|
// Token: 0x06000C93 RID: 3219 RVA: 0x00025B24 File Offset: 0x00023D24
|
|
public LinuxIPInterfaceProperties(LinuxNetworkInterface iface, List<IPAddress> addresses)
|
|
: base(iface, addresses)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000C94 RID: 3220 RVA: 0x00025B30 File Offset: 0x00023D30
|
|
public override IPv4InterfaceProperties GetIPv4Properties()
|
|
{
|
|
if (this.ipv4iface_properties == null)
|
|
{
|
|
this.ipv4iface_properties = new LinuxIPv4InterfaceProperties(this.iface as LinuxNetworkInterface);
|
|
}
|
|
return this.ipv4iface_properties;
|
|
}
|
|
}
|
|
}
|