! \brief internal */
| 311 | \brief internal |
| 312 | */ |
| 313 | void 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected