diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-09-17 20:25:24 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-09-17 20:25:24 +0200 |
| commit | 33056a200b1cf044201fd37d694197eea315bb26 (patch) | |
| tree | 3816d4b6cbbdcd6eb995ff132b01b3366cd82b55 /src/base/QXmppByteStreamIq.h | |
| parent | d0bb9c4848d8a82fd477981bf4c9adfb0a314890 (diff) | |
| download | qxmpp-33056a200b1cf044201fd37d694197eea315bb26.tar.gz | |
Allow StreamHost::host to contain a host name
Diffstat (limited to 'src/base/QXmppByteStreamIq.h')
| -rw-r--r-- | src/base/QXmppByteStreamIq.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/QXmppByteStreamIq.h b/src/base/QXmppByteStreamIq.h index 408cccfd..0054bfb1 100644 --- a/src/base/QXmppByteStreamIq.h +++ b/src/base/QXmppByteStreamIq.h @@ -43,8 +43,8 @@ public: QString jid() const; void setJid(const QString &jid); - QHostAddress host() const; - void setHost(const QHostAddress &host); + QString host() const; + void setHost(const QString &host); quint16 port() const; void setPort(quint16 port); @@ -53,7 +53,7 @@ public: void setZeroconf(const QString &zeroconf); private: - QHostAddress m_host; + QString m_host; QString m_jid; quint16 m_port; QString m_zeroconf; |
