diff options
Diffstat (limited to 'src/gopherclient.hpp')
| -rw-r--r-- | src/gopherclient.hpp | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/src/gopherclient.hpp b/src/gopherclient.hpp deleted file mode 100644 index 888ebd8..0000000 --- a/src/gopherclient.hpp +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef GOPHERCLIENT_HPP -#define GOPHERCLIENT_HPP - -#include <QObject> -#include <QTcpSocket> -#include <QUrl> - -#include "protocolhandler.hpp" - -class GopherClient : public ProtocolHandler -{ - Q_OBJECT -public: - explicit GopherClient(QObject *parent = nullptr); - - ~GopherClient() override; - - bool supportsScheme(QString const & scheme) const override; - - bool startRequest(QUrl const & url, RequestOptions options) override; - - bool isInProgress() const override; - - bool cancelRequest() override; - -private: // slots - void on_connected(); - void on_readRead(); - void on_finished(); - void on_socketError(QAbstractSocket::SocketError errorCode); - - -private: - QTcpSocket socket; - QByteArray body; - QUrl requested_url; - bool was_cancelled; - QString mime; - bool is_processing_binary; -}; - -#endif // GOPHERCLIENT_HPP |
