This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct NetworkInterfaceFlags : OptionSetType { | |
let rawValue: UInt | |
static let None = NetworkInterfaceFlags(rawValue: 0) | |
static let Up = NetworkInterfaceFlags(rawValue: 1 << 0) | |
static let Broadcast = NetworkInterfaceFlags(rawValue: 1 << 1) | |
static let Debug = NetworkInterfaceFlags(rawValue: 1 << 2) | |
static let Loopback = NetworkInterfaceFlags(rawValue: 1 << 3) | |
static let PointToPoint = NetworkInterfaceFlags(rawValue: 1 << 4) | |
static let Smart = NetworkInterfaceFlags(rawValue: 1 << 5) | |
static let Running = NetworkInterfaceFlags(rawValue: 1 << 6) |
OlderNewer