70b63f18b3
Change-Id: Idf3773c081ce103647c5dbea6e82c22bfc5606c9
61 lines
1.1 KiB
C++
61 lines
1.1 KiB
C++
/*
|
|
* Copyright 2014 Haiku Inc. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _B_GOPHER_REQUEST_H_
|
|
#define _B_GOPHER_REQUEST_H_
|
|
|
|
|
|
#include <deque>
|
|
|
|
#include <NetworkRequest.h>
|
|
#include <UrlProtocolRoster.h>
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
namespace Network {
|
|
|
|
|
|
class BGopherRequest : public BNetworkRequest {
|
|
public:
|
|
virtual ~BGopherRequest();
|
|
|
|
status_t Stop();
|
|
const BUrlResult& Result() const;
|
|
void SetDisableListener(bool disable);
|
|
|
|
private:
|
|
friend class BUrlProtocolRoster;
|
|
|
|
BGopherRequest(const BUrl& url,
|
|
BDataIO* output,
|
|
BUrlProtocolListener* listener = NULL,
|
|
BUrlContext* context = NULL);
|
|
|
|
status_t _ProtocolLoop();
|
|
void _SendRequest();
|
|
|
|
bool _NeedsParsing();
|
|
bool _NeedsLastDotStrip();
|
|
|
|
status_t _ParseInput(bool last);
|
|
|
|
BString& _HTMLEscapeString(BString &str);
|
|
|
|
private:
|
|
char fItemType;
|
|
BString fPath;
|
|
|
|
ssize_t fPosition;
|
|
|
|
BUrlResult fResult;
|
|
};
|
|
|
|
|
|
} // namespace Network
|
|
|
|
} // namespace BPrivate
|
|
|
|
#endif // _B_GOPHER_REQUEST_H_
|