X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorenetwork.h;h=668f3140c1684cb614c11383ad9a5abe8180ddc9;hp=d26935878cc39b1785a9e6e58700fad01629cc7b;hb=41b9d689945e784b160a25d12076600ff4b7ae90;hpb=9451580d19875b23ec52af64585496efb7268e0f diff --git a/src/core/corenetwork.h b/src/core/corenetwork.h index d2693587..668f3140 100644 --- a/src/core/corenetwork.h +++ b/src/core/corenetwork.h @@ -389,8 +389,8 @@ signals: void sslErrors(const QVariant &errorData); void newEvent(Event *event); - void socketInitialized(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort); - void socketDisconnected(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort); + void socketInitialized(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort, qint64 socketId); + void socketDisconnected(const CoreIdentity *identity, const QHostAddress &localAddress, quint16 localPort, const QHostAddress &peerAddress, quint16 peerPort, qint64 socketId); protected: inline virtual IrcChannel *ircChannelFactory(const QString &channelname) { return new CoreIrcChannel(channelname, this); } @@ -453,6 +453,7 @@ private: #else QTcpSocket socket; #endif + qint64 _socketId; CoreUserInputHandler *_userInputHandler;