You've already forked linux-packaging-mono
Imported Upstream version 3.8.0
Former-commit-id: 6a76a29bd07d86e57c6c8da45c65ed5447d38a61
This commit is contained in:
@ -79,4 +79,23 @@ namespace System.Net.NetworkInformation {
|
||||
LOOPBACK = 0x18,
|
||||
FDDI = 0xf
|
||||
}
|
||||
|
||||
internal enum MacOsInterfaceFlags {
|
||||
IFF_UP = 0x1, /* interface is up */
|
||||
IFF_BROADCAST = 0x2, /* broadcast address valid */
|
||||
IFF_DEBUG = 0x4, /* turn on debugging */
|
||||
IFF_LOOPBACK = 0x8, /* is a loopback net */
|
||||
IFF_POINTOPOINT = 0x10, /* interface is point-to-point link */
|
||||
IFF_NOTRAILERS = 0x20, /* avoid use of trailers */
|
||||
IFF_RUNNING = 0x40, /* resources allocated */
|
||||
IFF_NOARP = 0x80, /* no address resolution protocol */
|
||||
IFF_PROMISC = 0x100, /* receive all packets */
|
||||
IFF_ALLMULTI = 0x200, /* receive all multicast packets */
|
||||
IFF_OACTIVE = 0x400, /* transmission in progress */
|
||||
IFF_SIMPLEX = 0x800, /* can't hear own transmissions */
|
||||
IFF_LINK0 = 0x1000, /* per link layer defined bit */
|
||||
IFF_LINK1 = 0x2000, /* per link layer defined bit */
|
||||
IFF_LINK2 = 0x4000, /* per link layer defined bit */
|
||||
IFF_MULTICAST = 0x8000 /* supports multicast */
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user