Alex MJune 12, 2019, 3:44 a.m.
QTcpSocket не могу добиться отправки строки
Доброе время суток, начал пробывать работать с QTcpSocket и не как не могу добится отправки на сервер и с сервера строк. Посмотри те где я косяк
// Так стортует сервер void UICore::on_StartServ_clicked() { tcpServer = new QTcpServer(this); connect(tcpServer, SIGNAL(newConnection()), this, SLOT(newuser())); if (!tcpServer->listen(QHostAddress::Any, ui->lE_Port->text().toInt()) && server_status==0) { qDebug() << QObject::tr("Unable to start the server: %1.").arg(tcpServer->errorString()); ui->textBrowser->append(tcpServer->errorString()); } else { server_status=1; qDebug() << tcpServer->isListening() << "TCPSocket listen on port"; ui->textBrowser->append(QString::fromUtf8("Сервер запущен!")); ui->textBrowser->append(QString::fromUtf8("Порт " + ui->lE_Port->text().toUtf8())); qDebug() << QString::fromUtf8("Сервер запущен!"); } ui->tabWidget->setCurrentIndex(0); ui->StartServ->setEnabled(false); ui->Settings->setEnabled(false); } // так работает слот реадирид QTcpSocket* clientSocket = (QTcpSocket*)sender(); int idusersocs=clientSocket->socketDescriptor(); QTextStream os(clientSocket); os.setAutoDetectUnicode(true); QString tmp = "HTTP/1.0 200 Ok\r\nContent-Type: text/html; charset=\"utf-8\"\r\n\r\n<h1>Test web Server</h1>\n"; ui->textBrowser->append("ReadClient:"+clientSocket->readAll()+"\n\r"); sendToClientStr(clientSocket,tmp); qDebug () << "test"; break;
Как бы если на этом этапе подключится с браузера то все ок. Но вот если попробывать вот так то беда
// конектимся к серверу и передаем сообщение // void UICore::on_cB_connect_clicked() { _socket->connectToHost(ui->lE_server->text().toUtf8(), ui->lE_port->text().toShort()); if(_socket->error()) { ui->tB_logs->append("Connectid by " + ui->lE_server->text().toUtf8() + " port " + ui->lE_port->text().toUtf8() ); }else{ QMessageBox *msg = new QMessageBox; msg->setText(_socket->errorString()); msg->show(); } QString tmp = "test"; sendToServerStr(tmp.toUtf8()); } bool UICore::sendToServerStr(QString str) { QByteArray block; QDataStream sendStream (&block,QIODevice::ReadWrite); sendStream.setVersion(QDataStream::Qt_5_9); sendStream << quint16(0) << str; sendStream.device()->seek(0); sendStream << (quint16)(block.size() - sizeof(quint16)); _socket->write(block); _socket->flush(); return true; }
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.Do you like it? Share on social networks!
AD
- Akiv Doros
- Nov. 11, 2024, 11:58 a.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:50points,
- Rating points-4
m
- molni99
- Oct. 25, 2024, 10:37 p.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:80points,
- Rating points4
m
- molni99
- Oct. 25, 2024, 10:29 p.m.
C ++ - Test 004. Pointers, Arrays and Loops
- Result:20points,
- Rating points-10
Last comments
Release of C++/Qt and QML application deployment utility CQtDeployer v1.4.0 (Binary Box) optionally substituted alkoxy, optionally substituted alkenyloxy, optionally substituted alkynyloxy, optionally substituted aryloxy, OCH, OC H, OC H, OC H, OC H, OC H, OC H, O C CH, OCH CH OH, O…
Qt/C++ - Lesson 031. QCustomPlot – The build of charts with time buy generic priligy We can just chat, and we will not lose too much time anyway
Qt/C++ - Lesson 060. Configuring the appearance of the application in runtime I didnt have an issue work colors priligy dapoxetine 60mg revia cost uk August 3, 2022 Reply
Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
How to Copy Files in Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
Now discuss on the forum
добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
IscanderCheOct. 31, 2024, 12:43 p.m.
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
ИМ
Реализация навигации по разделам Спасибо Евгений!
Игорь МаксимовOct. 3, 2024, 1:05 a.m.
а где слот newuser() и его обвязка?
Там все работает. Я уже поборол эту проблемму. Теперь пытаюсь сделать непрырывное вещяния и прием. Порциями все ровно а вот в реалтайме беда