Hot answers tagged qtnetwork
12
With Qt and the QtNetwork module, you can get one of the MAC addresses like that:
QString getMacAddress()
{
foreach(QNetworkInterface interface, QNetworkInterface::allInterfaces())
{
// Return only the first non-loopback MAC Address
if (!(interface.flags() & QNetworkInterface::IsLoopBack))
return ...
4
libcurl and curlpp are great libraries, but using them adds a dependency to your project that probably you can avoid.
Recent versions of Qt recommend to use QNetworkAccessManager to make network requests (included http requests) and receive replies.
The simplest possible way to download a file is:
QNetworkAccessManager *manager = new ...
4
The data in QNetworkReply is not ready immediately after the call to QNetworkAccessManager::get(). The call is asynchronous, and you need to connect to either the finished() signal of QNetworkAccessManager, or readyRead() signal of QNetworkReply before you attempt to retrieve any data.
2
Have you tried creating a custom SLOT and connecting it to the QNetworkReply error SIGNAL?
You can then inspect the argument to determine the error and decide how you want to deal with it.
QNetworkReply::NoError 0 no error condition. Note: When the HTTP protocol returns a redirect no error will be reported. You can check if there is a redirect with the ...
2
Giuseppe is right, you don't need to use libcurl, curlpp and similar libraries.
There is no need for that, Qt has a simple and working class on it own.
Keep in mind that the standard way of sending request and retrieving reply is asynchronous.
You always have to connect the manager finished(QNetworkReply*) signal to a slot.
If you send multiple requests ...
2
Unfortunately, that's how the Windows telnet.exe client works and there's no way to change that.
You must not rely on client-specific behavior like this when handling TCP streams. TCP does not guarantee message boundaries, but it does guarantee that, from your point of view, the data is delivered int he same order it was written by the client. You must take ...
2
No, in most cases you don't need a full simulated web browser. In most cases, just performing the same web requests like a web browser would do is enough.
Try to record the web requests in your browser, using a plugin like "HTTP Live Headers" or "Firebug" in Firefox. I think Chrome provides a similar tool out of the box. These tools record the GET and POST ...
2
to download a file you need : a QNetworkAccessManager in this case http.
a QFile in this case file.
a QNetworkReply in this case reply
connect the reply with a slot that writes the bytes received through QNetworkAccessManager in this case the slot is called readingReadyBytes()
so i create the request and connect to my slot:
const QNetworkRequest& ...
1
The lowest OSI model layer which Qt can manage is the transport layer (maybe the layer 3 but I don't think). You can only get the number of received/sent bytes from/to a given port.
If you want to "sniff" the whole traffic on your interface, you should use a library based on pcap (winpcap for Windows, libpcap for GNU/Linux).
1
There is no really simple way. You have to create your own protocol. However, that protocol can often be very very simple protocol.
On writing end, simple example
Convert QString filename to QByteArray using QString::toUtf8()
Write to socket the length of QByteArray as binary int
Write to socket the bytes from the QByteArray containing the file name
Write ...
1
Note that QNetworkAccessManager operates asynchronously. The get() method does not block while the network operation occurs; it returns immediately. (See the Detailed Description section of the documentation for more info.)
This is pretty typical of Qt's network-related APIs, because you usually don't want your application to freeze while waiting for data ...
1
You can use customize Signals and Slots for your purpose.
From Client side
Just emit signals with passing parameter as a job id or job name
ex: emit signalA(jobId);
and at server side, connect the signal to required function
ex: connect(client, SIGNAL(signalA(int jobId)), this, SLOT(functionA(int jobId)));
I hope this will help you in identifying the ...
1
you can not open server on the port that someone else listens to unless they stop it. Ports below 1025 belong to privileged range and depending on your Os your program may have to elevated permissions
Well you can pick different network interface, but perhaps this is not what you are after
1
I think what you are looking for is QNetworkConfigurationManager which was added in Qt 4.7.
QNetworkConfigurationManager provides access to the network configurations known to the system and enables applications to detect the system capabilities (with regards to network sessions) at runtime.
It has signals for configurations being added and removed.
...
1
donwloadProgress is a signal of QNetworkReply.
Try something like this:
url = "http://127.0.0.1:8888/direkt_php_qt.php";
manager = new QNetworkAccessManager(this);
QNetworkReply* reply = manager->get(QNetworkRequest(url));
connect(reply, SIGNAL(downloadProgress(qint64, qint64)),this, SLOT(updateDataTransferProgress(qint64,qint64)));
1
QDataStream operator << is used for serialization, and not to write raw data as is.
For example byte sequences are sent with a 32-bits "header" indicating the size of the sequence.
And because you are casting the whole structure to char*, it interprets it as a string and stops at the first '\0' character which is in the int part of the struct.
So ...
1
You're welcome...and thanks for following my suggestions on editing the question, and doing the requisite effort to pinpoint the problem more clearly. So now I can tell you what's wrong. :)
The behavior of the << and >> are different on QDataStream than on C++ standard IOstreams. In the world of classes like std::stringstream these operators ...
1
Your http or http2 object is destroyed at the end of the constructor, because it is allocated locally.
You should at least allocate it dynamically:
http2 *h = new http2(this);
If you want to reuse it, you can also declare it as a member of tcpserver, instead of using a local variable. If not, you should destroy it somehow when it is not needed anymore.
...
1
Yes, there are some differences between windows and linux with CR LF, it's "normal".
One approach that works nice is to make use of buffer and then wait for your data to be ready or timeout. For exmaple your seperator token can be “\r” and if you get an “\n” after just drop it.
Here is an example expecting a token from a custom protocol:
int ...
1
The reason you can't connect is because the SSL certificate (with serial 2F:DF:BC:F6:AE:91:52:6D:0F:9A:A3:DF:40:34:3E:9A) presented to you when you connect to www.gmail.com is issued for a different domain - www.google.com. This has nothing to do with root CA certificate store because no root CA certificate is needed to compare cert's Subject CN field with ...
1
Here is a complete example of an QT FTP client, along with documentation. I would recommend using their wrappers around the QFTP class.
Excerpt on handling errors when downloading:
if (ftp->currentCommand() == QFtp::Get) {
if (error) {
statusLabel->setText(tr("Canceled download of %1.")
...
Only top voted, non community-wiki answers of a minimum length are eligible