blob: 3aa5329af42392bcb92d524f542f6ef4da2d6d99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#pragma once
#include <library/cpp/http/io/stream.h>
#include <util/generic/ptr.h>
class TSocket;
/// Потоки ввода/вывода для получения запросов и отправки ответов HTTP-сервера.
class THttpServerConn {
public:
explicit THttpServerConn(const TSocket& s);
THttpServerConn(const TSocket& s, size_t outputBufferSize);
~THttpServerConn();
THttpInput* Input() noexcept;
THttpOutput* Output() noexcept;
inline const THttpInput* Input() const noexcept {
return const_cast<THttpServerConn*>(this)->Input();
}
inline const THttpOutput* Output() const noexcept {
return const_cast<THttpServerConn*>(this)->Output();
}
/// Проверяет, можно ли установить режим, при котором соединение с сервером
/// не завершается после окончания транзакции.
inline bool CanBeKeepAlive() const noexcept {
return Output()->CanBeKeepAlive();
}
void Reset();
private:
class TImpl;
THolder<TImpl> Impl_;
};
|