X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcorenetwork.cpp;h=4223c5f829fdc0caf073213e032391bfd5065434;hp=552662a79831613867457c67a2f4517f100ae377;hb=1f58e3506add8dc546c1e98367dce2cd24e5773d;hpb=02666f58f85f8c8a127804716e7df2d52d1e273c diff --git a/src/core/corenetwork.cpp b/src/core/corenetwork.cpp index 552662a7..4223c5f8 100644 --- a/src/core/corenetwork.cpp +++ b/src/core/corenetwork.cpp @@ -82,7 +82,7 @@ CoreNetwork::CoreNetwork(const NetworkId &networkid, CoreSession *session) connect(this, SIGNAL(newEvent(Event *)), coreSession()->eventManager(), SLOT(postEvent(Event *))); if (Quassel::isOptionSet("oidentd")) { - connect(this, SIGNAL(socketConnected(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Core::instance()->oidentdConfigGenerator(), SLOT(addSocket(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Qt::BlockingQueuedConnection); + connect(this, SIGNAL(socketOpen(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Core::instance()->oidentdConfigGenerator(), SLOT(addSocket(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Qt::BlockingQueuedConnection); connect(this, SIGNAL(socketDisconnected(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16)), Core::instance()->oidentdConfigGenerator(), SLOT(removeSocket(const CoreIdentity*, QHostAddress, quint16, QHostAddress, quint16))); } } @@ -451,7 +451,7 @@ void CoreNetwork::socketInitialized() return; } - emit socketConnected(identity, localAddress(), localPort(), peerAddress(), peerPort()); + emit socketOpen(identity, localAddress(), localPort(), peerAddress(), peerPort()); Server server = usedServer(); #ifdef HAVE_SSL