haiku/headers/private/netservices/HttpResult.h
Niels Sascha Reedijk 70b63f18b3 netservices: remove all old conditional code
Change-Id: Idf3773c081ce103647c5dbea6e82c22bfc5606c9
2021-09-11 13:08:11 +01:00

64 lines
1.2 KiB
C++

/*
* Copyright 2010-2017 Haiku Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _B_HTTP_RESULT_H_
#define _B_HTTP_RESULT_H_
#include <HttpHeaders.h>
#include <String.h>
#include <Url.h>
#include <UrlResult.h>
namespace BPrivate {
namespace Network {
class BUrlRequest;
class BHttpResult: public BUrlResult {
friend class BHttpRequest;
public:
BHttpResult(const BUrl& url);
BHttpResult(const BHttpResult& other);
~BHttpResult();
// Result parameters modifications
void SetUrl(const BUrl& url);
// Result parameters access
const BUrl& Url() const;
BString ContentType() const;
off_t Length() const;
// HTTP-Specific stuff
const BHttpHeaders& Headers() const;
const BString& StatusText() const;
int32 StatusCode() const;
// Result tests
bool HasHeaders() const;
// Overloaded members
BHttpResult& operator=(const BHttpResult& other);
private:
BUrl fUrl;
BHttpHeaders fHeaders;
int32 fStatusCode;
BString fStatusString;
};
} // namespace Network
} // namespace BPrivate
#endif // _B_URL_RESULT_H_