diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-07-20 09:21:12 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-07-20 09:21:12 +0200 |
| commit | fc010e259215f270c2c400c682feadf6d4d570c9 (patch) | |
| tree | c4d7cda45495af1a418e8f9fe8527cceda3d63eb /src/base/QXmppSaslAuth.h | |
| parent | 0c523e7b9658921c49a87a253adb4cc625c4a36a (diff) | |
| download | qxmpp-fc010e259215f270c2c400c682feadf6d4d570c9.tar.gz | |
SASL: don't hardcode service type
Diffstat (limited to 'src/base/QXmppSaslAuth.h')
| -rw-r--r-- | src/base/QXmppSaslAuth.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/base/QXmppSaslAuth.h b/src/base/QXmppSaslAuth.h index cb6fc467..ad8c78b5 100644 --- a/src/base/QXmppSaslAuth.h +++ b/src/base/QXmppSaslAuth.h @@ -82,8 +82,11 @@ public: QXmppSaslClient(); virtual ~QXmppSaslClient(); - QString server() const; - void setServer(const QString &server); + QString host() const; + void setHost(const QString &host); + + QString serviceType() const; + void setServiceType(const QString &serviceType); QString username() const; void setUsername(const QString &username); |
