qhostaddress.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtNetwork module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QHOSTADDRESS_H
  38. #define QHOSTADDRESS_H
  39. #include <QtCore/qstring.h>
  40. #include <QtNetwork/qabstractsocket.h>
  41. struct sockaddr;
  42. QT_BEGIN_HEADER
  43. QT_BEGIN_NAMESPACE
  44. QT_MODULE(Network)
  45. class QHostAddressPrivate;
  46. class Q_NETWORK_EXPORT QIPv6Address
  47. {
  48. public:
  49.     inline quint8 &operator [](int index) { return c[index]; }
  50.     inline quint8 operator [](int index) const { return c[index]; }
  51.     quint8 c[16];
  52. };
  53. typedef QIPv6Address Q_IPV6ADDR;
  54. class Q_NETWORK_EXPORT QHostAddress
  55. {
  56. public:
  57.     enum SpecialAddress {
  58.         Null,
  59.         Broadcast,
  60.         LocalHost,
  61.         LocalHostIPv6,
  62.         Any,
  63.         AnyIPv6
  64.     };
  65.     QHostAddress();
  66.     explicit QHostAddress(quint32 ip4Addr);
  67.     explicit QHostAddress(quint8 *ip6Addr);
  68.     explicit QHostAddress(const Q_IPV6ADDR &ip6Addr);
  69.     explicit QHostAddress(const sockaddr *sockaddr);
  70.     explicit QHostAddress(const QString &address);
  71.     QHostAddress(const QHostAddress &copy);
  72.     QHostAddress(SpecialAddress address);
  73.     ~QHostAddress();
  74.     QHostAddress &operator=(const QHostAddress &other);
  75.     QHostAddress &operator=(const QString &address);
  76.     void setAddress(quint32 ip4Addr);
  77.     void setAddress(quint8 *ip6Addr);
  78.     void setAddress(const Q_IPV6ADDR &ip6Addr);
  79.     void setAddress(const sockaddr *sockaddr);
  80.     bool setAddress(const QString &address);
  81.     QAbstractSocket::NetworkLayerProtocol protocol() const;
  82.     quint32 toIPv4Address() const;
  83.     Q_IPV6ADDR toIPv6Address() const;
  84.     QString toString() const;
  85.     QString scopeId() const;
  86.     void setScopeId(const QString &id);
  87.     bool operator ==(const QHostAddress &address) const;
  88.     bool operator ==(SpecialAddress address) const;
  89.     inline bool operator !=(const QHostAddress &address) const
  90.     { return !operator==(address); }
  91.     inline bool operator !=(SpecialAddress address) const
  92.     { return !operator==(address); }
  93.     bool isNull() const;
  94.     void clear();
  95. #ifdef QT3_SUPPORT
  96.     inline QT3_SUPPORT quint32 ip4Addr() const { return toIPv4Address(); }
  97.     inline QT3_SUPPORT bool isIPv4Address() const { return protocol() == QAbstractSocket::IPv4Protocol
  98.                                                       || protocol() == QAbstractSocket::UnknownNetworkLayerProtocol; }
  99.     inline QT3_SUPPORT bool isIp4Addr() const  { return protocol() == QAbstractSocket::IPv4Protocol
  100.                                                       || protocol() == QAbstractSocket::UnknownNetworkLayerProtocol; }
  101.     inline QT3_SUPPORT bool isIPv6Address() const { return protocol() == QAbstractSocket::IPv6Protocol; }
  102. #endif
  103. private:
  104.     QHostAddressPrivate *d;
  105. };
  106. inline bool operator ==(QHostAddress::SpecialAddress address1, const QHostAddress &address2)
  107. { return address2 == address1; }
  108. #ifndef QT_NO_DEBUG_STREAM
  109. Q_NETWORK_EXPORT QDebug operator<<(QDebug, const QHostAddress &);
  110. #endif
  111. Q_NETWORK_EXPORT uint qHash(const QHostAddress &key);
  112. #ifndef QT_NO_DATASTREAM
  113. Q_NETWORK_EXPORT QDataStream &operator<<(QDataStream &, const QHostAddress &);
  114. Q_NETWORK_EXPORT QDataStream &operator>>(QDataStream &, QHostAddress &);
  115. #endif
  116. QT_END_NAMESPACE
  117. QT_END_HEADER
  118. #endif // QHOSTADDRESS_H