Ejemplo n.º 1
0
void MainWindow::dataReady() {
    if(socket->canReadLine()) {
        fw_port = QString(socket->readLine()).toInt();
        qDebug() << "Using forward port " << fw_port;
        emit newConnectionStatus(true);
    }
}
Ejemplo n.º 2
0
void WBSDBaseWindow::connectionStatusChanged (int aStatus,StringMessage aMSG){
    emit newConnectionStatus(aStatus,aMSG);
}