⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qnetworkinterface.cpp

📁 奇趣公司比较新的qt/emd版本
💻 CPP
📖 第 1 页 / 共 2 页
字号:
/*!    \class QNetworkInterface    \brief The QNetworkInterface class provides a listing of the host's IP    addresses and network interfaces.    \since 4.2    \reentrant    \ingroup io    QNetworkInterface represents one network interface attached to the    host where the program is being run. Each network interface may    contain zero or more IP addresses, each of which is optionally    associated with a netmask and/or a broadcast address. The list of    such trios can be obtained with addressEntries(). Alternatively,    when the netmask or the broadcast addresses aren't necessary, use    the allAddresses() convenience function to obtain just the IP    addresses.    QNetworkInterface also reports the interface's hardware address with    hardwareAddress().    Not all operating systems support reporting all features. Only the    IPv4 addresses are guaranteed to be listed by this class in all    platforms. In particular, IPv6 address listing is only supported    on Windows XP and more recent versions, Linux, MacOS X and the    BSDs.    \sa QNetworkAddressEntry*//*!    \enum QNetworkInterface::InterfaceFlag    Specifies the flags associated with this network interface. The    possible values are:    \value IsUp                 the network interface is active    \value IsRunning            the network interface has resources                                allocated    \value CanBroadcast         the network interface works in                                broadcast mode    \value IsLoopBack           the network interface is a loopback                                interface: that is, it's a virtual                                interface whose destination is the                                host computer itself    \value IsPointToPoint       the network interface is a                                point-to-point interface: that is,                                there is one, single other address                                that can be directly reached by it.    \value CanMulticast         the network interface supports                                multicasting    Note that one network interface cannot be both broadcast-based and    point-to-point.*//*!    Constructs an empty network interface object.*/QNetworkInterface::QNetworkInterface()    : d(0){}/*!    Frees the resources associated with the QNetworkInterface object.*/QNetworkInterface::~QNetworkInterface(){}/*!    Creates a copy of the the QNetworkInterface object contained in \a    other.*/QNetworkInterface::QNetworkInterface(const QNetworkInterface &other)    : d(other.d){}/*!    Copies the contents of the QNetworkInterface object contained in \a    other into this one.*/QNetworkInterface &QNetworkInterface::operator=(const QNetworkInterface &other){    d = other.d;    return *this;}/*!    Returns true if this QNetworkInterface object contains valid    information about a network interface.*/bool QNetworkInterface::isValid() const{    return !name().isEmpty();}/*!    Returns the name of this network interface. On Unix systems, this    is a string containing the type of the interface and optionally a    sequence number, such as "eth0", "lo" or "pcn0". On Windows, it's    an internal ID that cannot be changed by the user.*/QString QNetworkInterface::name() const{    return d ? d->name : QString();}/*!    Returns the flags associated with this network interface.*/QNetworkInterface::InterfaceFlags QNetworkInterface::flags() const{    return d ? d->flags : InterfaceFlags(0);}/*!    Returns the low-level hardware address for this interface. On    Ethernet interfaces, this will be a MAC address in string    representation, separated by colons.    Other interface types may have other types of hardware    addresses. Implementations should not depend on this function    returning a valid MAC address.*/QString QNetworkInterface::hardwareAddress() const{    return d ? d->hardwareAddress : QString();}/*!    Returns the list of IP addresses that this interface possesses    along with their associated netmasks and broadcast addresses.    If the netmask or broadcast address information is not necessary,    you can call the allAddresses() function to obtain just the IP    addresses.*/QList<QNetworkAddressEntry> QNetworkInterface::addressEntries() const{    return d ? d->addressEntries : QList<QNetworkAddressEntry>();}/*!    Returns a QNetworkInterface object for the interface named \a    name. If no such interface exists, this function returns an    invalid QNetworkInterface object.    \sa name(), isValid()*/QNetworkInterface QNetworkInterface::interfaceFromName(const QString &name){    QNetworkInterface result;    result.d = manager()->interfaceFromName(name);    return result;}/*!    Returns a QNetworkInterface object for the interface whose internal    ID is \a index. Network interfaces have a unique identifier called    the "interface index" to distinguish it from other interfaces on    the system. Often, this value is assigned progressively and    interfaces being removed and then added again get a different    value every time.    This index is also found in the IPv6 address' scope ID field.*/QNetworkInterface QNetworkInterface::interfaceFromIndex(int index){    QNetworkInterface result;    result.d = manager()->interfaceFromIndex(index);    return result;}/*!    Returns a listing of all the network interfaces found on the host    machine.*/QList<QNetworkInterface> QNetworkInterface::allInterfaces(){    QList<QSharedDataPointer<QNetworkInterfacePrivate> > privs = manager()->allInterfaces();    QList<QNetworkInterface> result;    foreach (QSharedDataPointer<QNetworkInterfacePrivate> p, privs) {        QNetworkInterface item;        item.d = p;        result << item;    }    return result;}/*!    This convenience function returns all IP addresses found on the    host machine. It is equivalent to calling addressEntries() on all the    objects returned by allInterfaces() to obtain lists of QHostAddress    objects then calling QHostAddress::ip() on each of these.*/QList<QHostAddress> QNetworkInterface::allAddresses(){    QList<QSharedDataPointer<QNetworkInterfacePrivate> > privs = manager()->allInterfaces();    QList<QHostAddress> result;    foreach (const QSharedDataPointer<QNetworkInterfacePrivate> p, privs) {        foreach (const QNetworkAddressEntry &entry, p->addressEntries)            result += entry.ip();    }    return result;}#ifndef QT_NO_DEBUG_STREAMstatic inline QDebug flagsDebug(QDebug debug, QNetworkInterface::InterfaceFlags flags){    if (flags & QNetworkInterface::IsUp)        debug.nospace() << "IsUp ";    if (flags & QNetworkInterface::IsRunning)        debug.nospace() << "IsRunning ";    if (flags & QNetworkInterface::CanBroadcast)        debug.nospace() << "CanBroadcast ";    if (flags & QNetworkInterface::IsLoopBack)        debug.nospace() << "IsLoopBack ";    if (flags & QNetworkInterface::IsPointToPoint)        debug.nospace() << "IsPointToPoint ";    if (flags & QNetworkInterface::CanMulticast)        debug.nospace() << "CanMulticast ";    return debug.nospace();}static inline QDebug operator<<(QDebug debug, const QNetworkAddressEntry &entry){    debug.nospace() << "(address = " << entry.ip();    if (!entry.netmask().isNull())        debug.nospace() << ", netmask = " << entry.netmask();    if (!entry.broadcast().isNull())        debug.nospace() << ", broadcast = " << entry.broadcast();    debug.nospace() << ")";    return debug.space();}QDebug operator<<(QDebug debug, const QNetworkInterface &networkInterface){    debug.nospace() << "QNetworkInterface(name = " << networkInterface.name()                    << ", hardware address = " << networkInterface.hardwareAddress()                    << ", flags = ";    flagsDebug(debug, networkInterface.flags());    debug.nospace() << ", entries = " << networkInterface.addressEntries()                    << ")\n";    return debug.space();}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -