X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fnetwork.h;h=d44319ca64773f5e9918d1198e6864790a84b2df;hb=a643fb463875bb3e516bcf6d61948f764bcb48f3;hp=25b02bc7bd9f1208a7eda2a262743e83d969a843;hpb=c85f07cd06593a778046d30809480c9db49c4802;p=quassel.git diff --git a/src/common/network.h b/src/common/network.h index 25b02bc7..d44319ca 100644 --- a/src/common/network.h +++ b/src/common/network.h @@ -164,7 +164,6 @@ public slots: void emitConnectionError(const QString &); private slots: - void ircUserDestroyed(); void channelDestroyed(); void removeIrcUser(IrcUser *ircuser); void ircUserInitDone(); @@ -239,9 +238,25 @@ struct NetworkInfo { NetworkId networkId; QString networkName; IdentityId identity; + + bool useCustomEncodings; QByteArray codecForEncoding; QByteArray codecForDecoding; + + // Server entry: QString "Host", uint "Port", QString "Password", bool "UseSSL" QVariantList serverList; + bool useRandomServer; + + QStringList perform; + + bool useAutoIdentify; + QString autoIdentifyService; + QString autoIdentifyPassword; + + bool useAutoReconnect; + quint32 autoReconnectInterval; + qint16 autoReconnectRetries; // -1 => Unlimited + bool rejoinChannels; bool operator==(const NetworkInfo &other) const; bool operator!=(const NetworkInfo &other) const;