X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcore.h;h=5f909175b132a35807b24081a8440f0d264cf772;hp=91aafd2779d0cbe12dc6f1001656d04cb0f68127;hb=6422c61b11d97f905b6a27f2d280e9ec0d8bb3e2;hpb=8697a21faab21ae23646f559cba9a85bd95b2ad7 diff --git a/src/core/core.h b/src/core/core.h index 91aafd27..5f909175 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -497,15 +497,15 @@ public: /** \param user The user to retrieve the username for * \return The username for the user */ - static inline const QString getAuthusername(UserId user) { - return instance()->_storage->getAuthusername(user); + static inline QString getAuthUserName(UserId user) { + return instance()->_storage->getAuthUserName(user); } //! Get a usable sysident for the given user in oidentd-strict mode /** \param user The user to retrieve the sysident for * \return The authusername */ - QString strictSysident(UserId user); + QString strictSysIdent(UserId user) const; //! Get a Hash of all last seen message ids @@ -590,7 +590,7 @@ public: */ static bool reloadCerts(); - static void cacheSysident(); + static void cacheSysIdent(); static QVariantList backendInfo(); static QVariantList authenticatorInfo(); @@ -675,7 +675,7 @@ private: DeferredSharedPtr _storage; ///< Active storage backend DeferredSharedPtr _authenticator; ///< Active authenticator QTimer _storageSyncTimer; - QMap _authusernames; + QMap _authUserNames; #ifdef HAVE_SSL SslServer _server, _v6server;