X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcorenetwork.h;h=668f3140c1684cb614c11383ad9a5abe8180ddc9;hb=a5ee609b02cb8d7ebb43b0034a6d50838c426f0b;hp=d26935878cc39b1785a9e6e58700fad01629cc7b;hpb=6a63070246d89aa2a2474e3a9a1035fa889ad77e;p=quassel.git 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;