10 #include <QNetworkReply>
11 #include <QNetworkRequest>
13 #include <QLocalSocket>
30 qint64
size()
const override;
38 qint64
readData(
char *data, qint64 maxSize)
override;
42 void sockerror(QAbstractSocket::SocketError);
44 void lsockerror(QLocalSocket::LocalSocketError);
53 QByteArray outcontent,incontent,inhead;
58 enum ReadMode {HeadRead,ContentRead}readMode;
virtual void ignoreSslErrors() override
relays SSL errors
Definition: wobnam.cpp:135
qint64 readData(char *data, qint64 maxSize) override
implementation of reading body data
Definition: wobnam.cpp:111
bool isSequential() const override
Definition: wobnam_p.h:28
void close() override
closes the reply stream, call this only if you are no longer interested in the answer ...
Definition: wobnam.cpp:133
qint64 bytesAvailable() const override
returns the amount of body data available to be read
Definition: wobnam.cpp:122
qint64 size() const override
returns the complete size of the body
Definition: wobnam.cpp:127
void abort() override
abort the reception (just closes the stream, does not actually abort anything yet) ...
Definition: wobnam.cpp:132
Definition: wobnam_p.h:16
WobScgiNetworkReplyImpl(QNetworkRequest, QByteArray op, QIODevice *, QObject *parent)
creates a new reply handler/receiver
Definition: wobnam.cpp:54