MCPcopy Create free account
hub / github.com/QNapi/qnapi / connection

Method connection

gui/src/qcumber/qinterprocesschannel.cpp:313–325  ·  view source on GitHub ↗

! \brief internal */

Source from the content-addressed store, hash-verified

311 \brief internal
312*/
313void QInterProcessChannel::connection() {
314 if (!pServer) return;
315
316 // qDebug("incoming Inter Process connection");
317
318 while (pServer->hasPendingConnections()) {
319 QManagedSocket *s =
320 new QManagedSocket(pServer->nextPendingConnection(), this);
321
322 connect(s, SIGNAL(message(QString, QManagedSocket *)), this,
323 SLOT(message(QString, QManagedSocket *)));
324 }
325}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected